efrei/programmation-c-cpp/tp2/pair-impair.c

20 lines
309 B
C
Raw Normal View History

2021-10-18 10:58:28 +02:00
/* Pair ou impair */
#include <stdio.h>
#include <stdlib.h>
int main() {
int nombre;
printf("Donnez un nombre entier : ");
scanf("%d", &nombre);
if (nombre % 2 == 0) {
printf("%d est pair\n", nombre);
} else {
printf("%d est impair\n", nombre);
}
return 0;
}