判断输入的年份是否为闰年。若某个年份能被4整除但不能被100整除,或者能被400整除,则这一年是闰年。 有效输入在:[1, 9999] 输入一个正整数,对于超出范围的输入,一律输出“Invalid input” 输出:xxx is a leap
时间: 2023-10-23 18:20:33 浏览: 69
python 输入年份 如果是闰年输出True 否则输出False 示例
5星 · 资源好评率100%
好的,以下是用C++实现的判断闰年的代码:
```
#include <iostream>
#include <string>
using namespace std;
int main() {
int year;
cout << "请输入一个年份:";
cin >> year;
if (year < 1 || year > 9999) {
cout << "Invalid input" << endl;
} else if (year % 4 == 0 && year % 100 != 0 || year % 400 == 0) {
cout << year << " is a leap year" << endl;
} else {
cout << year << " is not a leap year" << endl;
}
return 0;
}
```
以上代码中,我们使用了取模运算符 `%` 来判断年份能否被4、100、400整除,从而判断是否为闰年。同时使用了 if-else 语句来处理无效输入,输出 "Invalid input"。
阅读全文