java输入一个年份n,然后输出从 1949 年到 n 年中所有的闰年
时间: 2023-04-05 22:04:03 浏览: 189
使用Java编写的闰年计算
4星 · 用户满意度95%
好的,这个问题我可以回答。以下是代码:
```java
import java.util.Scanner;
public class LeapYear {
public static void main(String[] args) {
Scanner input = new Scanner(System.in);
System.out.print("请输入一个年份n:");
int n = input.nextInt();
System.out.print("1949年到" + n + "年中的闰年有:");
for (int i = 1949; i <= n; i++) {
if ((i % 4 == 0 && i % 100 != 0) || i % 400 == 0) {
System.out.print(i + " ");
}
}
}
}
```
希望能对您有所帮助。
阅读全文