c++ 闰年的判断
输入一个年份判断是否为闰年
源代码如下:
#include "stdafx.h"
#include<iostream>;
using namespace std;
int _tmain(int argc, _TCHAR* argv[])
{
int n;
cout << "请输入一个年份" << endl;
cin >> n;
if (n % 4 == 0 && n % 100 != 0||n%400==0) //能被4整除,并且 不能被100整除。
{
cout << n << "年是闰年" << endl;
}
else
{
cout << n << "年不是闰年" << endl;
}
return 0;
}
运行结果如下:
来源:CSDN
作者:Arana--
链接:https://blog.csdn.net/weixin_44387644/article/details/104826266