How to get a Leap Year
By Ramakrishna on Apr 5, 2009 in Java Interview Questions
import java.util.Calendar.*;
import java.lang.*; //its’ a default package which will import
class LeapYear {
public static void main(String args[])throws Exception {
Calendar cal=Calendar.getInstance();
int year=cal.get(Calendar.YEAR);
if(year % 4 == 0 && (year % 100 != 0 || year % 400 == 0))
{ System.out.println(“Leap Year”); }else {
System.out.println(“Not a Leap Year); }
}
} // The Meaning of above is every 4 year’s the LeapYear comes and when The Centuries comes into pictures it will divided by the 400 so that the remainder should be zera is the Leap year
