Run ID | 作者 | 问题 | 语言 | 测评结果 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
24285 | 老方 | 有一门课不及格的学生 | C++ | 通过 | 0 MS | 248 KB | 155 | 2023-08-10 12:55:37 |
#include<iostream> using namespace std; int main(){ int Chinese,maths; cin>>Chinese>>maths; cout<<(Chinese<60^maths<60); return 0; }