1、手写JAVA代码实现:输入一个年份判断平闰年,提示:年份能被4整除且不能被100整除的为闰年,或者年份能被400整除的是闰年;否则为平年。
时间: 2023-10-23 21:14:15 浏览: 84
好的,以下是实现代码:
```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 && year % 100 != 0 || year % 400 == 0) {
isLeapYear = true;
}
if (isLeapYear) {
System.out.println(year + "年是闰年!");
} else {
System.out.println(year + "年是平年!");
}
}
}
```
我们使用 Scanner 类从控制台读取用户输入的年份,然后使用 if 语句判断该年份是否为闰年,最后输出结果。
相关问题
手写代码实现:输入一个年份判断平闰年,提示:年份能被4整除且不能被100整除的为闰年,或者年份能被400整除的是闰年;否则为平年。
好的,这是一个简单的判断平闰年的问题。以下是手写代码实现:
```
year = int(input("请输入一个年份:"))
if (year % 4 == 0 and year % 100 != 0) or year % 400 == 0:
print(year, "年是闰年")
else:
print(year, "年是平年")
```
希望能对你有所帮助!
3.从键盘里输入一个年份,判断是否是闰年 闰年特点:能被4整除但不能被100整除或者能被400整除
判断一个年份是否是闰年的算法相对简单。如果满足以下条件之一,那么这个年份就是闰年:
1. 能够被4整除,例如2004年、2020年;
2. 能被100整除,但是同时也能被400整除,比如1900年不是闰年,因为虽然它能被100整除,但它不能被400整除;而2000年是闰年,因为它既能被100整除又能被400整除。
你可以按照以下步骤编写代码来实现这个功能:
```python
def is_leap_year(year):
if year % 4 == 0:
if year % 100 == 0:
if year % 400 == 0:
return True
else:
return False
else:
return True
else:
return False
year = int(input("请输入一个年份:"))
if is_leap_year(year):
print(f"{year}是闰年")
else:
print(f"{year}不是闰年")
阅读全文