Java:输入一个年份并确认该年份是否为闰年
时间: 2024-05-16 15:13:47 浏览: 89
可以使用以下代码来判断一个年份是否为闰年:
```java
import java.util.Scanner;
public class LeapYear {
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 + "年不是闰年");
}
}
}
```
代码中使用了一个 `boolean` 类型的变量 `isLeapYear` 来表示是否为闰年,初始值为 `false`。根据闰年的定义,如果一个年份能被 4 整除但不能被 100 整除,或者能被 400 整除,那么它就是闰年。因此,我们使用嵌套的 if 语句来判断年份是否为闰年,如果是,则将 `isLeapYear` 设置为 `true`。最后根据 `isLeapYear` 的值输出结果。
阅读全文