华师一附中OI组

标题: 输入一个年份,判断它是否闰年 [打印本页]

作者: admin    时间: 2018-6-4 19:58
标题: 输入一个年份,判断它是否闰年
注意和数学上表达方式的不同
作者: JASONZHU    时间: 2018-7-6 22:33
题8.
  1. #include<iostream>
  2. using namespace std;
  3. int y;
  4. int main()
  5. {
  6.     cin>>y;
  7.     if((y%4==0 && y%100!=0) || (y%400==0))
  8.          cout<<"YES";
  9.     else cout<<"NO" ;
  10.     return 0;
  11. }


复制代码

作者: 郑子川    时间: 2018-7-12 14:51
本帖最后由 郑子川 于 2018-7-12 14:55 编辑
  1. <blockquote>#include <iostream>
  2. int x;
  3. using namespace std;
  4. int main()
  5. {
  6.     cin>>x;
  7.     if((x%4==0&&x%100!=0)||(x%400==0))
  8.     {
  9.         cout<<"yes";
  10.     }
  11.     else
  12.     {
  13.         cout<<"no";
  14.     }
  15.     return 0;
  16. }
复制代码


作者: 高歌岭    时间: 2018-7-16 20:12
  1. #include<iostream>
  2. using namespace std;
  3. int y;
  4. int main()
  5. {
  6.     cin>>y;
  7.     if((y%4==0&&y%100!=0)||(y%4==0)) cout<<"YES";
  8.     else cout<<"NO";
  9.         return 0;
  10. }
复制代码

作者: 高歌岭    时间: 2018-7-16 20:59
  1. #include<iostream>
  2. using namespace std;
  3. int y;
  4. int main()
  5. {
  6.     cin>>y;
  7.     if(y%4==0)
  8.         if(y%100!=0)cout<<"YES";
  9.         else
  10.             if(y%400==0)cout<<"YES";
  11.             else cout<<"NO";
  12.     else cout<<"NO";
  13.     return 0;
  14. }
复制代码

作者: JASONZHU    时间: 2018-7-16 22:20
闰年
  1. #include <iostream>
  2. using namespace std;
  3. int y;
  4. int main()
  5. {
  6.     cout<<"\n========YEAR========\n";//闰年
  7.     cin>>y;
  8.     if(y%4==0)
  9.     {
  10.         if(y%100!=0) cout<<"YES";
  11.         else if(y%400==0) cout<<"YES";
  12.         else cout<<"NO";

  13.     }
  14.     else cout<<"NO";
  15.     /***********************/
  16.     if((y%4==0 && y%100!=0) || (y%400==0))
  17.         cout<<"YES";
  18.     else cout<<"NO";
  19.     return 0;
  20. }
复制代码





欢迎光临 华师一附中OI组 (http://hsyit.cn/) Powered by Discuz! X3.2