Advertisement
Guest User

Untitled

a guest
Nov 18th, 2019
106
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. int checkLeapYear(int year)
  2. {
  3. int isLeapYear= 0;
  4. if (year % 400 == 0)
  5. {
  6. return 1;
  7. }
  8. if (year % 100 == 0)
  9. {
  10. return 0;
  11. }
  12. if (year % 4 == 0)
  13. {
  14. return 1;
  15. }
  16. return 0;
  17. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement