3 条题解

  • 0
    @ 2023-11-26 14:33:57
    #include<bits/stdc++.h>
    using namespace std;
    int main(){
    	double n;
    	cin>>n;
    	cout<<60+(n>=1.3)*60;
    	return 0;
    }
    
    • 0
      @ 2023-11-19 9:17:01

      #include<bist/stdc++,h> using namespace std; int main(){ double h; cin>>h; if(h<1.3) cout<<60; else cout<<120; return 0; }

      • 0
        @ 2023-7-23 21:56:09

        #include <bits/stdc++.h> using namespace std; int main() { double height; cin >> height;

        if (height < 1.3) {
            cout << "60" << endl;
        } else {
            cout << "120" << endl;
        }
        
        return 0;
        

        }

        • 1

        信息

        ID
        31
        时间
        1000ms
        内存
        16MiB
        难度
        5
        标签
        递交数
        173
        已通过
        66
        上传者