Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- package chapter5;
- public class project5dot5 {
- int year = 1997;
- boolean leapYear = true;
- public void isLeapYear()
- {
- if (year >= 1582 && year % 4 == 0);
- {leapYear = true;
- if (year % 100 == 0 && year % 400 != 0){leapYear = false;}
- if (leapYear = true){System.out.println("it's a leap year");}
- else{System.out.println("it is not a leap year");}
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment