View Code of Problem 28

#include <stdio.h>
int main()
{
   int year,t;
   while (scanf("%d",&year)!=EOF)
   {
	   year%100==0?(year%400==0?printf("Leap Year\n"):printf("Not Leap Year\n")):(year%4==0?printf("Leap Year\n"):printf("Not Leap Year\n"));
    }
}
     

Double click to view unformatted code.


Back to problem 28