8 条题解

  • -1
    @ 2026-8-4 15:54:47

    #include <bits/stdc++.h> using namespace std;

    int main() { int a, b; cin >> a >> b ;

    if (a < 60 && b > 60 || a > 60 && b < 60) {
    	cout <<  "yes";
    
    } else {
    	cout << "no";
    }
    
    
    return 0;
    

    }

    【例22.1】 有一门课不及格的学生

    信息

    ID
    148
    时间
    1000ms
    内存
    64MiB
    难度
    5
    标签
    递交数
    170
    已通过
    60
    上传者