I cannot seem to figure out why it will not print more than one year in a range. I've got everything except that up and running so far.
The starting year cannot be before 1752 and the ending year cannot be past 9999. I need the program to find all of the leap years in between the chosen starting year and the chosen ending year and then print all of those leap years off for the user.
Everything seems to work fine until I added the else if
at the end to print a message if there are no years in the given range. I would just remove it if I could but that message is a part of the requirements for my assignment.
import java.util.Scanner;
class Final_Project_Mendenhall {
public static void main(String[] args)
{
int startYear = 1752;
int endYear = 9999;
int i;
int j = 0;
Scanner in = new Scanner(System.in); //Scanner object to get user input for Start Year
System.out.print("Enter the Start Year (Greater or equal to 1752):");
startYear = in.nextInt(); //Get Start Year from user
while (startYear < 1752){
System.out.println("Enter a valid start year (Greater or equal to 1752):");
startYear = in.nextInt(); //Get valid Start Year from user
} //End while
System.out.print("Enter the End Year (Less than 9999):");
endYear = in.nextInt(); //Get End Year from user
while (endYear > 9999){
System.out.println("Enter a valid end year (Less than 9999):");
endYear = in.nextInt(); //Get valid End Year from user
} //End while
System.out.println("Leap years:"); //Print Leap Years
for (i = startYear; i <= endYear; i++){ //Loop through years between Start and End Years
if ((0 == i % 4) && (0 == i % 400)){ //Find and print Leap Years, if there are
System.out.println(i);
j++;
}//End if
//End for
else if(j == 0){
System.out.println("There are no leap years in that range");
}//End if
}
}
}
Your condition for the leap year is not correct.
Given below are the conditions for a year to qualify as a leap year:
Replace
with
For production code, I also recommend you use the OOTB java.time API:
Source: https://en.wikipedia.org/wiki/Gregorian_calendar