Home Java Beginners Listing out leap years between certain period



Listing out leap years between certain period
Posted on: February 11, 2008 at 12:00 AM
The programming lesson will teach you the coding for finding and listing out the leap years between two years.

Listing out leap years between certain period

     

The programming lesson will teach you the coding for finding and listing out the leap years between two years. In the following example we have to find out the leap years between 1990 and 2006. First define the two years under a class "leapyears". Let i = 2006 and n=1990. Now with the help of for loop method initialize the year as n=1990 and n<=i. Also apply the increment statement in the loop as we have to check one by one. 

As we know a leap year is divisible by 4, define an integer l=n%4. So if 'n' is divisible by 4 or l=0, then the particular year can be a leap year. For checking this, apply the if statement and if this satisfies then, the year will be a leap year. For listing out each year write "+n" in the System.out.println. 

Now compile and run the program in the command window and see the result. If you find any error, check the whole program and find out the   

Here is the code of the program:

class leapyears 
{
  public static void main(String[] args
  {
  int i=2006;
  int n;
  for (n=1990; n<=i ; n++){
  int l=n%4;
  if (l==0){
  System.out.println("leap year: "+n);
  }
  }
  }
}

Download this program.

Related Tags for Listing out leap years between certain period:
coopclasshelpmethodfindloopstateooappcheckdefineforexamplewithstatementtoiniexamincrementearbetweeneitlsliinitinitializefirstapplyinnoasstamntouttweenletleapyearclemmeppyearxaxampssoeeetwatplykincirhallncrmplfolloweaandarstatwingtwzssthavst6apeapfinlsoinitialpleplndonolo


Ask Questions?    Discuss: Listing out leap years between certain period   View All Comments

Post your Comment


Your Name (*) :
Your Email :
Subject (*):
Your Comment (*):
  Reload Image
 
 

Ask Questions?

If you are facing any programming issue, such as compilation errors or not able to find the code you are looking for.

Ask your questions, our development team will try to give answers to your questions.