7 条题解

  • 2
    @ 2023-12-13 19:35:31

    AC辣!!!

    #include <bits/stdc++.h> 
    using namespace std;
    int main(){
    }
    
    • 1
      @ 2023-8-30 11:54:18

      正常:

      #include <iostream>
      using namespace std;
      int main()
      {
      int n;
      if (n>90)
      {
      cout << "yes";
      }
      return 0;
      }
      
      
      

      老六:

      #include <iostream>
      using namespace std;
      int main()
      {
      return 0;
      }
      
      
      
      • @ 2023-10-4 21:00:29

        哈哈 诚不欺我中国自古出老六

    • 0
      @ 2023-9-13 22:04:59
          int b,a;
          cin >> b;
          a = b;
          if (a >= 90 )
          {
              cout << "yes";
          }
      
      • 0
        @ 2023-8-31 15:30:23

        **

        #include <bits/stdc++.h>
        using namespace std;
        int main(){
            cout << " ";
            return 0;
        }
        
        • 0
          @ 2023-8-19 15:31:34

          👀️

          #include<iostream>
          using namespace std;
          int main()
          {
              int n;//定义一个变量
              cin>>n;//输入变量
              if(n>90)//判断
              {
                  cout<<"yes";//大于90说yes
              }
              return 0;
          }
          
          • 0
            @ 2023-4-3 21:33:18
            #include<bits/stdc++.h>
            using namespace std;
            int main()
            {
                int x;
                cin>>x;
                if (x>=90)
                    cout<<"yes";
                return 0;
            }
            
            • 0
              @ 2022-11-20 16:32:51

              本想着放松一下,没想到这题连放松都称不上 算了,看题解吧:

              #include <iostream>
              using namespace std;
              int mark;
              
              int main()
              {
                  cin >> mark;
                  if (mark >= 90)
                  {
                      cout << "yes";
                  }
                  return 0;
              }
              
              • 1

              【入门】小明有没有考到90分?

              信息

              ID
              298
              时间
              1000ms
              内存
              16MiB
              难度
              3
              标签
              递交数
              393
              已通过
              225
              上传者