Advertisement
Guest User

Untitled

a guest
Feb 27th, 2017
95
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. //File: leap.c
  2. //By: Jason Yim
  3. //login: jyim3
  4. //Team: JDD
  5. //Date:
  6.  
  7. //this is the function file for leap years program
  8. #include "leap.h"
  9.  
  10. int is_leap(int year)
  11. {
  12. if(year % 400 == 0 || year % 4 == 0)
  13. {
  14. return TRUE;
  15. }
  16. else
  17. {
  18. return FALSE;
  19. }
  20. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement