Run ID 作者 问题 语言 测评结果 时间 内存 代码长度 提交时间
55413 zhangweiran 有一门课不及格的学生 C++ 通过 0 MS 244 KB 233 2024-11-06 23:02:19

Tests(1/1):


#include<iostream> using namespace std; int main() { int Chinese,Math; cin>>Chinese>>Math; bool a=(Chinese>=60); bool b=(Math>=60); if((a==1&&b==0)||(a==0&&b==1)){ cout<<1; } else{ cout<<0; } return 0; }


测评信息: