ecpilse断输入年份是否闰年
时间: 2024-02-28 16:24:15 浏览: 52
输入年份 判别是否为闰年
以下是 Java 代码示例,用于检查输入的年份是否为闰年:
```java
import java.util.Scanner;
public class LeapYearChecker {
public static void main(String[] args) {
Scanner scanner = new Scanner(System.in);
System.out.print("请输入一个年份:");
int year = scanner.nextInt();
boolean isLeapYear = false;
if (year % 4 == 0) {
if (year % 100 == 0) {
if (year % 400 == 0) {
isLeapYear = true;
}
} else {
isLeapYear = true;
}
}
if (isLeapYear) {
System.out.println(year + "年是闰年!");
} else {
System.out.println(year + "年不是闰年!");
}
}
}
```
程序会提示用户输入一个年份,然后检查该年份是否为闰年,并输出相应的信息。闰年的判断规则是:能被4整除但不能被100整除,或者能被400整除。
阅读全文