4 条题解

  • 1
    @ 2023-4-23 12:53:36

    image

    • -1
      @ 2024-5-7 19:15:03
      1. #include<bits/stdc++.h>
      using namespace std;
      int main(){
      	int n;
      	cin>>n;
      	if(n<50)
      	cout<<0;
      	if (n>50 and n<80)
      	cout<<1;
      	if (n>80)
      	cout<<2;
          return 0;
      }
      
      • -1
        @ 2023-6-3 10:00:47

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

        int n;
        cin>>n;
        if(n<50)
            cout<<0;
        else if(n>=50 and n<=80)
            cout<<1;
        else
            cout<<2;
        return 0;
        

        }

        • -3
          @ 2023-6-3 11:09:31

          image

          • 1

          信息

          ID
          605
          时间
          1000ms
          内存
          256MiB
          难度
          3
          标签
          (无)
          递交数
          49
          已通过
          26
          上传者