Developpement/23DEV1.1/TPS1/TP01/06-Conditions/anneede.c

14 lines
328 B
C
Raw Normal View History

2024-12-09 11:53:11 +01:00
#include <stdio.h>
#include <stdlib.h>
int main(void) {
int x;
printf("choisissez une annee : \n");
scanf("%d", &x);
if((x%4==0)&&((x%100!=0)||(x%400==0))){
printf("l annee est bissextile\n");
}else{
printf("l annee n est pas bissextile\n");
}
return EXIT_SUCCESS;
}