Respuesta :
Answer:
// program in C.
#include <stdio.h>
// main function
int main()
{
// variable
int y;
printf("Enter a year : ");
// read year
scanf("%d",&y);
// check leap year
if((y % 4 == 0 && y % 100 != 0) || (y % 400 == 0))
printf("%d is leap year.",y);
else
printf("%d is not a leap year.",y);
return 0;
}
Explanation:
Read year from user and assign it to variable "y".If year is divisible by 4 and not divisible by 100 or year is divisible by 400 then year is leap year otherwise year is not a leap year.
Output:
Enter a year : 2009
2009 is not a leap year.
Answer:
i_year=int(input(""))
#check leap year
if((i_year % 4 == 0 and i_year % 100 != 0) or (i_year % 400 == 0)):
print("{} is a leap year.".format(i_year))
else:
print("{} is not a leap year.".format(i_year))
Explanation: