|
【知识链接:如何判断闰年】
(1) 能被4整除,但不能被100整除的年份 (例如2008是闰年,1900不是闰年) 是闰年。
(2) 能被100整除并且400整除的年份 (例如2000年) 也是闰年。
标签:输出,年份,1055,闰年,题解,C++,400,100,整除 From: https://blog.csdn.net/2301_78151773/article/details/140468361【参考答案】
#include <iostream> using namespace std; int main() { int n; // n 代表年份 cin>>n; if(n%100==0)//能被100整除 { if(n%400==0)//并且能被400整除 cout<<"Y"; else cout<<"N"; } else //普通年份(不能被100整除) { if(n%4==0) //能被4整除 cout<<"Y"; else cout<<"N"; } return 0; }