1 条题解

  • 0
    @ 2026-4-7 21:27:26
    1. #include<bits/stdc++.h>

    2. using namespace std;
    3. double n;
    4. int main(){
    5. cin>>n;
    6. if(n>=92.8) {cout<<"jin";return 0;}
    7. if(n>=85.6&&n<92.8){
    8.  cout<<"yin";return 0;
      
    9. }
    10. if(n<85.6&&n>=82.1) {
    11. cout<<"tong";return 0;
    12. }
    13. if(n<82.1) cout<<"sorry";
    14. return 0;
    15. }
    • 1

    信息

    ID
    2166
    时间
    1000ms
    内存
    64MiB
    难度
    3
    标签
    递交数
    19
    已通过
    13
    上传者