1 条题解

  • 1
    @ 2026-6-5 11:48:39
    #include <bits/stdc++.h>
    using namespace std;
    int main() {
    double a;
    cin>>a;
    if(a>=1.3){
        cout<<120;
    } else {
        cout<<60;
    }
        return 0;
    }
    
    
    
    • @ 2026-8-29 10:41:07

      #include <bits/stdc++.h>

      using namespace std;

      double n;

      int main() {

      cin>>n;

      if(n>1.3){

      cout<<"120";
      

      }else{

      cout<<"60";
      

      }

      return 0;

      } 为啥我这样写只有90?

信息

ID
30042
时间
1000ms
内存
256MiB
难度
3
标签
递交数
45
已通过
24
上传者