双分支判断输入的年份是否为闰年代码
时间: 2023-10-07 10:14:46 浏览: 82
year = int(input("请输入一个年份:"))
if year % 4 == 0:
if year % 100 == 0:
if year % 400 == 0:
print(year, "是闰年")
else:
print(year, "不是闰年")
else:
print(year, "是闰年")
else:
print(year, "不是闰年")
相关问题
JavaScript 判断输入年份是否为闰年
要判断输入的年份是否为闰年,可以使用以下 JavaScript 代码:
```javascript
function isLeapYear(year) {
// 闰年的条件是能被4整除但不能被100整除,或者能被400整除
if ((year % 4 === 0 && year % 100 !== 0) || year % 400 === 0) {
return true;
} else {
return false;
}
}
// 示例
var year = 2020;
if (isLeapYear(year)) {
console.log(year + " 是闰年");
} else {
console.log(year + " 不是闰年");
}
```
你可以将要判断的年份传递给 `isLeapYear` 函数,它会返回一个布尔值,表示该年份是否为闰年。在示例中,我们判断了 2020 年是否为闰年。你可以根据需要修改 `year` 变量中的年份来进行测试。
判断年份是否为闰年的代码
判断一个年份是否为闰年的常见规则是:普通闰年能被4整除但不能被100整除;但是如果是世纪闰年,则需要能被400整除。以下是几种编程语言的示例代码:
### Python:
```python
def is_leap_year(year):
if year % 4 != 0:
return False
elif year % 100 == 0 and year % 400 != 0:
return False
else:
return True
# 示例
year = int(input("请输入一个年份:"))
if is_leap_year(year):
print(f"{year}是闰年")
else:
print(f"{year}不是闰年")
```
### Java:
```java
public static boolean isLeapYear(int year) {
if (year % 4 != 0)
return false;
else if (year % 100 == 0)
return year % 400 == 0;
else
return true;
}
// 示例
int year = Integer.parseInt(scanner.nextLine());
if (isLeapYear(year)) {
System.out.println(year + "是闰年");
} else {
System.out.println(year + "不是闰年");
}
```
### JavaScript:
```javascript
function isLeapYear(year) {
return (year % 4 === 0 && year % 100 !== 0) || year % 400 === 0;
}
// 示例
let year = parseInt(prompt("请输入一个年份:"));
console.log(`${year}是${isLeapYear(year) ? '': '非'}闰年`);
```
阅读全文