Run ID | 作者 | 问题 | 语言 | 测评结果 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
51592 | zhangsicun | 有一门课不及格的学生 | C++ | 通过 | 0 MS | 244 KB | 277 | 2024-09-22 21:32:20 |
#include<bits/stdc++.h> using namespace std; int main() { int a,b; cin >> a >> b; if(a<60 and b>=60){ cout<<1; }else{ if(a>=60 and b<60){ cout<<1; }else{ cout<<0; } } return 0; }