Guest User

Untitled

a guest
Nov 23rd, 2017
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.57 KB | None | 0 0
  1. #include <stdio.h>
  2. int isLeapYear (int year){   if (year % 4 == 0)   {   if (year % 100 == 0)    {     if (year % 400 == 0)     {      return  1;     }     return  0;    }    return  1;   }   else   {    return  0;   }}
  3.  
  4. int main(){    int year;    printf("Enter any year: ");    scanf("%d\n", &year);
  5.     if(isLeapYear(year))     {         printf("%d is leap year!\n", year);     }    else     {         printf("%d is not leap year!\n", year);     }    return 0;}
Add Comment
Please, Sign In to add comment