8 条题解

  • -1
    @ 2026-8-4 16:03:04

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

    int main() { int x, y; cin >> x >> y; if (x < 60 && y >= 60 || x >= 60 && y < 60) { cout << "1"; } else cout << "0"; return 0; }

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

    信息

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