Find given year is leap or not


#include<studio.h>

main()

{

  int year;

  printf("Enter the year you want to check\n");

  scanf("%d",&year);

  if(year%400==0)

  {

    printf("%d is leap year\n",year);

  }

  else if(year%100==0)

  {

    printf("%d is not a leap year\n",year);

  }

  else if(year%4==0)

  {

    printf("%d is a leap year\n",year);

  }

  else

  {

    printf("%d is not a leap year\n",year);

  }

 }
Output:-
Enter the year you want to check
2017
2017 is not a leap year

Post a Comment

If you have any doubts, Please let me know
Thanks!

Previous Post Next Post