在HTML中使用JavaScript语句2.完成函数judgeLeapYear(year),功能是判断某一年是否为闰年,是则返回“xxx年是闰年”,否则返回“xxx年不是闰年”。参数year是表示年份的四位数整数。
时间: 2024-05-12 21:16:09 浏览: 95
函数 判断一年是不是闰年
5星 · 资源好评率100%
好的,这是一个关于编程的问题,可以回答。以下是代码示例:
```
function judgeLeapYear(year) {
if (year % 4 === 0 && year % 100 !== 0 || year % 400 === 0) {
return year + "年是闰年";
} else {
return year + "年不是闰年";
}
}
// 测试
console.log(judgeLeapYear(2000)); // 2000年是闰年
console.log(judgeLeapYear(2021)); // 2021年不是闰年
```
这个函数中,我们使用了 if-else 语句来判断是否为闰年,满足某个条件则返回“xxx年是闰年”,否则返回“xxx年不是闰年”。
阅读全文