10 条题解

  • 2
    @ 2024-3-10 20:00:25
    #include<iostream>
    using namespace std;
    int main()
    {
    	double n;
    	cin>>n;
    	if(n<1.3)
    	{
    		cout<<60;
    	}
    	else
    	{
    		cout<<120;
    	}
    	return 0;
    }
    
    
    • 1
      @ 2024-3-10 19:59:55
      #include<iostream>
      using namespace std;
      int main()
      {
      	double n;
      	cin>>n;
      	if(n<1.3)
      	{
      		cout<<60;
      	}
      	else
      	{
      		cout<<120;
      	}
      	return 0;
      }
      
      
      • 1
        @ 2023-7-7 12:48:40
        #include<iostream>
        using namespace std;
        int main()
        {
        	double n;
        	cin>>n;
        	if(n<1.3)
        	{
        		cout<<60;
        	}
        	else
        	{
        		cout<<120;
        	}
        	return 0;
        }
        
        • 1
          @ 2023-7-1 10:12:59
          #include <bits/stdc++.h>
          using namespace std;
          int main()
          {
              ios::sync_with_stdio(false);
              cin.tie(0);
              cout.tie(0);
              double a;
              cin >> a;
              if (a < 1.3)
                  cout << 60;
              else
                  cout << 120;
              return 0;
          }
          
          • 0
            @ 2023-12-12 18:02:19
            #include <bits/stdc++.h> 
            using namespace std;
            #define ll long long
            int main(){
                cout<<120;
                return 0;
            }
            
            • 0
              @ 2023-9-18 21:27:01
              #include<bits/stdc++.h>
              using namespace std;
              int main()
              {
                  double c;
                  cin >> c;
                  c = c * 1.0;
                  if(c < 1.3)
                  {
                      cout << "60";
                  }
                  else
                  {
                      cout << "120";
                  }
                  return 0;
              }
              

              A

              • 0
                @ 2023-4-2 18:45:48
                #include<bits/stdc++.h>
                using namespace std;
                int main()
                {
                    double x;
                    cin>>x;
                    if (x<1.3)
                        cout<<60;
                    else
                        cout<<120;
                    return 0;
                }
                
                • 0
                  @ 2022-12-23 11:15:35
                  #include <bits/stdc++.h>
                  using namespace std;
                  double x;
                  int main()
                  {
                  	cin >> x;
                  	if (x >= 1.3)
                      {
                  		printf("%d", 120);
                  	}
                      else
                      {
                  		printf("%d", 60);
                  	}
                  	return 0;
                  }
                  
                • 0
                  @ 2022-11-10 13:11:24

                  号没了

                  #include <iostream>
                  using namespace std;
                  int main()
                  {
                      double n;
                      cin >> n;
                      if(n<1.3)
                      {
                          cout << 60;
                      }
                      else
                      {
                          cout << 120;
                      }
                  }
                  
                  • -2
                    @ 2023-8-31 15:06:27

                    这也是对的哦!点个赞吧❤️

                    #include <bits/stdc++.h>
                    using namespace std;
                    int main(){
                         cout << "120";
                        return 0;
                    }
                    
                    • 1

                    信息

                    ID
                    31
                    时间
                    1000ms
                    内存
                    16MiB
                    难度
                    4
                    标签
                    递交数
                    696
                    已通过
                    304
                    上传者