Leap year Program in java

  1. class  Leapyear  
  2. {  
  3.     public static void main(String[] args)   
  4.     {  
  5.         int n=2000;  
  6.         if (n%4==0){  
  7.         System.out.println("The given year is a leap year");  
  8.             }  
  9.         else{  
  10.         System.out.println("This is not a leap year");  
  11.     }  
  12. }