| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 147796 | 李铭洋 | 07a+b>c | C++ | Compile Error | 0 MS | 0 KB | 155 | 2026-02-07 18:56:06 |
#include<iostream> using namespace std; int main() { int a,b,c,d; char e,r; cin>>a>>b>>c; e=Yes; r=No d=a+b>c?e:r; cout<<d; return 0; }
Main.cc: In function 'int main()':
Main.cc:8:4: error: 'Yes' was not declared in this scope
e=Yes;
^
Main.cc:9:4: error: 'No' was not declared in this scope
r=No
^