2 条题解

  • 0
    @ 2025-4-12 19:28:36
    #include<bits/stdc++.h>
    using namespace std;
    int main(){
        int n;
        cin>>n;
        if(n<=60){
            cout<<"正常";
        }else{
            cout<<"超速";
        }
        return 0;
    }
    
    • 0
      @ 2024-12-22 11:03:57

      Python :

      # coding=utf-8
      a=int(input())
      if a<=60:
          print('正常')
      else:
          print('超速')
      
      • 1

      信息

      ID
      132
      时间
      1000ms
      内存
      128MiB
      难度
      10
      标签
      递交数
      2
      已通过
      2
      上传者