2 条题解

  • 1
    @ 2023-10-6 10:52:00

    #include<bits/stdc++.h> using namespace std; int main(){ int n; cin>>n; if(n%40&&n%100!=0||n%4000)cout<<"yes"; else cout<<"no"; return 0; }

    • 0
      @ 2023-7-29 11:00:02
      #include<bits/stdc++.h>
      using namespace std;
      int main()
      {
          int a;
          cin>>a;
          if(a%4==0 && a%100!=0){
              cout<<"yes";
          }
          else if(a%400==0){
              cout<<"yes";
          }
          else{
              cout<<"no";
          }
          return 0;
      }
      
      
      • 1

      信息

      ID
      643
      时间
      1000ms
      内存
      16MiB
      难度
      4
      标签
      递交数
      21
      已通过
      15
      上传者