8 条题解

  • 2
    @ 2023-9-22 18:37:16
    #include<bits/stdc++.h>
    using namespace std;
    int main()
    {
        int c;
        cin >> c;
        if (c >= 60)
        {
            cout << "pass!";
        }
        else
        {
            cout << "sorry!";
        }
        return 0;
    }//A
    
    • 1
      @ 2024-4-27 17:15:12
      #include<bits/stdc++.h>
      using namespace std;
      int main()
      {
          int n;
          cin>>n;
          if (n>=60)
          {
              cout<<"pass!";
          }
          else
          {
              cout<<"sorry!";
          }
          return 0;
      }//超简单,已AC
      
      
      • 1
        @ 2023-4-6 19:50:11
        #include<bits/stdc++.h>
        using namespace std;
        int main()
        {
            int x;
            cin>>x;
            if (x>=60)
                cout<<"pass!";
            else
                cout<<"sorry!";
            return 0;
        }
        • 1
          @ 2022-11-27 10:33:23
          #include <bits/stdc++.h>
          using namespace std;
          int main()
          {
              int n;
              cin >> n;
              if (n >= 60)
              {
                  cout << "pass!";
              }
              else
              {
                  cout << "sorry!";
              }
              return 0;
          }
          
          • 0
            @ 2023-1-15 11:10:34
            #include <iostream>//hetao3097453
            using namespace std;
            int main()
            {
                int n;
                cin >> n;
                if(n >= 60) 
                {
                    cout << "pass!";
                }
                else 
                {
                    cout << "sorry!";
                } 
                return 0;
            }
            
            
            • -1
              @ 2022-11-19 16:25:22

              答案!!!!!!!!!!!!!!!!!!!

              • -1
                @ 2022-11-19 16:24:13

                #include <iostream> using namespace std; int main() { int n; cin>>n; if(n>=60) { cout<<"pass!"; } else { cout<<"sorry!"; } return 0; }

                • -1
                  @ 2022-11-19 16:23:56

                  #include <iostream> using namespace std; int main() { int n; cin>>n; if(n>=60) { cout<<"pass!"; } else { cout<<"sorry!"; } return 0; }

                  • 1

                  信息

                  ID
                  639
                  时间
                  1000ms
                  内存
                  16MiB
                  难度
                  1
                  标签
                  递交数
                  163
                  已通过
                  112
                  上传者