Run ID | 作者 | 问题 | 语言 | 测评结果 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
50668 | tonghanchen | 带余除法 | C++ | 解答错误 | 0 MS | 240 KB | 342 | 2024-09-06 20:38:18 |
#include<bits/stdc++.h>//万能头文件 using namespace std; int main() { bool isgreenlight,isothercrossing,car_num; cin>>isgreenlight>>isothercrossing>>car_num; if(!isgreenlight) cout<<"按按钮"; if(isothercrossing) cout<<"提醒"; else if(car_num==0) cout<<"过马路"; else cout<<"等等"; return 0; }