20 lines
309 B
C
20 lines
309 B
C
|
/* 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;
|
||
|
}
|