华师一附中OI组
标题:
输入一个年份,判断它是否闰年
[打印本页]
作者:
admin
时间:
2018-6-4 19:58
标题:
输入一个年份,判断它是否闰年
注意和数学上表达方式的不同
作者:
JASONZHU
时间:
2018-7-6 22:33
题8.
#include<iostream>
using namespace std;
int y;
int main()
{
cin>>y;
if((y%4==0 && y%100!=0) || (y%400==0))
cout<<"YES";
else cout<<"NO" ;
return 0;
}
复制代码
作者:
郑子川
时间:
2018-7-12 14:51
本帖最后由 郑子川 于 2018-7-12 14:55 编辑
<blockquote>#include <iostream>
int x;
using namespace std;
int main()
{
cin>>x;
if((x%4==0&&x%100!=0)||(x%400==0))
{
cout<<"yes";
}
else
{
cout<<"no";
}
return 0;
}
复制代码
作者:
高歌岭
时间:
2018-7-16 20:12
#include<iostream>
using namespace std;
int y;
int main()
{
cin>>y;
if((y%4==0&&y%100!=0)||(y%4==0)) cout<<"YES";
else cout<<"NO";
return 0;
}
复制代码
作者:
高歌岭
时间:
2018-7-16 20:59
#include<iostream>
using namespace std;
int y;
int main()
{
cin>>y;
if(y%4==0)
if(y%100!=0)cout<<"YES";
else
if(y%400==0)cout<<"YES";
else cout<<"NO";
else cout<<"NO";
return 0;
}
复制代码
作者:
JASONZHU
时间:
2018-7-16 22:20
闰年
#include <iostream>
using namespace std;
int y;
int main()
{
cout<<"\n========YEAR========\n";//闰年
cin>>y;
if(y%4==0)
{
if(y%100!=0) cout<<"YES";
else if(y%400==0) cout<<"YES";
else cout<<"NO";
}
else cout<<"NO";
/***********************/
if((y%4==0 && y%100!=0) || (y%400==0))
cout<<"YES";
else cout<<"NO";
return 0;
}
复制代码
欢迎光临 华师一附中OI组 (http://hsyit.cn/)
Powered by Discuz! X3.2