Programmation Avancée en C


parite.c

00001 #include <stdio.h>
00002 
00003 int main() 
00004 {
00005     int x;
00006     printf("x = ");  scanf("%d", &x);
00007     printf("-> x est ");
00008     switch (x % 2) { // pour changer un peu
00009         case -1: // l'opération % 2 pour les nombres négatifs renvoit -1 et non 1
00010         case 1 : printf("im");
00011         case 0 : printf("pair\n"); break;
00012     } 
00013     return 0;
00014 }