APL/APL1.1/TP04/bissextile.c

24 lines
397 B
C
Raw Normal View History

2021-09-17 10:43:20 +02:00
#include <stdio.h>
#include <stdlib.h>
#include <stdbool.h>
#define ANNEE 100
bool bissextile(int ann) {
if (((ann % 4 == 0) && (ann % 100 != 0)) || (ann % 400 == 0)) {
return true;
}
return false;
}
int main(void) {
if (bissextile(ANNEE)) {
printf("L'année %d est bissextile.\n", ANNEE);
} else {
printf("L'année %d n'est pas bissextile.\n", ANNEE);
}
return EXIT_SUCCESS;
}