Created
July 22, 2015 21:18
-
-
Save Marzogh/d201973ecc5ad939c634 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
int calcNoOfDays(int Month, int Year) | |
{ | |
int noOfDays[] = | |
{ 0, 31, 0, 31, 30, 31, 30, 31, | |
31, 30, 31, 30, 31 | |
}; | |
if (Month == 2) { | |
if (Year % 4 == 0 || Year % 400 == 0) | |
noOfDays[2] = 29; | |
else if (Year % 4 != 0 || Year % 100 == 0) | |
noOfDays[2] = 28; | |
} | |
return noOfDays[Month]; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment