Run ID | Author | Problem | Lang | Verdict | Time | Memory | Code Length | Submit Time |
---|---|---|---|---|---|---|---|---|
31509 | 闻航 | 有一门课不及格的学生 | C++ | Accepted | 0 MS | 240 KB | 200 | 2023-11-19 14:02:54 |
#include<iostream> using namespace std; int main() { int a,b; cin>>a>>b; if(a<60&&b>=60||a>=60&&b<60) { cout<<"1"; } else { cout<<"0"; } return 0; }