How do I find the next leap year if the given input isn't a leap year?
A year is considered a leap year when it is either:
- divisible by 4, but not 100 or
- divisible by both 4, 100, and 400 at the same time
Input:
A single line containing a number that represents a year, here 1702.
Output:
The next soonest leap year if the input is not a leap year. Otherwise, output "Leap year".
The next leap year is 1704
Heres my code: When I input 1702 nothing shows but if it's 1700 it works. If ever you can help pls only use if else or while since these two are the only allowed for it to run.
import java.util.Scanner;
class Main {
public static void main(String args[]) {
Scanner input = new Scanner(System.in);
int year = input.nextInt();
int leap = 0;
if (year % 400 == 0) {
System.out.print("Leap year");
} else if (year % 100 == 0) {
leap += 4;
year += leap;
System.out.print("The next leap year is ");
System.out.print(year);
} else if (year % 4 == 0) {
System.out.print("Leap year");
}
input.close();
}
}
tl;dr short solution with
java.time
:Java 8+ provide the package
java.time
which has a classYear
which provides a method to determine if that very year was/is/will be a leap year, that isYear.isLeap()
.You could use it to get your desired result, maybe like in the following example:
This example has an output of