判断年份是否为闰年的代码
时间: 2024-10-16 22:14:12 浏览: 31
判断一个年份是否为闰年的常见规则是:普通闰年能被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) ? '': '非'}闰年`);
```
阅读全文