Run ID 作者 问题 语言 测评结果 时间 内存 代码长度 提交时间
77723 sh25_shengmy 有一门课不及格的学生 C++ 通过 0 MS 244 KB 289 2025-12-26 14:43:10

Tests(1/1):


#include <bits/stdc++.h> using namespace std; int main() { int chinese, math; cin >> chinese >> math; if ((chinese < 60 && math >= 60) || (chinese >= 60 && math < 60)) { cout << 1 << endl; } else { cout << 0 << endl; } return 0; }


测评信息: