Advertisement
Guest User

Untitled

a guest
Feb 26th, 2015
177
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.15 KB | None | 0 0
  1. if (month <= 12) {
  2. if (month >= 1) {
  3. if (day >= 1) {
  4. if (day <= getDaysInMonth(year, month)) {
  5. return true;
  6. }
  7. }
  8. }
  9. }
  10. return false;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement