-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathLeapYear.java
More file actions
38 lines (33 loc) · 942 Bytes
/
LeapYear.java
File metadata and controls
38 lines (33 loc) · 942 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
package BasicJavaProblems;
public class LeapYear {
static boolean Leap(int n){
if((n%4==0 && n%100!=0)||(n%400==0))
return true;
return false;
}
static boolean detail(int n){
// if the year is divided by 4
if(n%4==0){
//if year is century
if(n%100==0){
// if year is divided by 400
// then it is a leap year
if(n%400==0)
return true;
else
return false;
}
else
return true;
}
else
return false;
}
public static void main(String[] args) {
int n=1900; //not leap year
System.out.println("Shorted condition :");
System.out.println(Leap(n));
System.out.println("complete condition :");
System.out.println(detail(n));
}
}