12 lines
257 B
C
12 lines
257 B
C
|
#include <stdio.h>
|
||
|
#include <stdlib.h>
|
||
|
int main(void) {
|
||
|
int annee;
|
||
|
printf("Donnez une année");
|
||
|
scanf("%d", &annee);
|
||
|
if (annee%4 == 0 && annee%100 != 0)
|
||
|
printf("Année Bissextile");
|
||
|
if (annee%4 != 0)
|
||
|
printf("Année non bissextile");
|
||
|
return EXIT_SUCCESS;
|
||
|
}
|