| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 116535 | 刘益梵 | 07a+b>c | C++ | Compile Error | 0 MS | 0 KB | 132 | 2025-04-12 11:26:20 |
#include<bits/stdc++.h> using namespace std; int main() { int a,b,c,n; cin>>a>>b>>c; ((a+b==c)?yes:no)=n; return 0; }
Main.cc: In function 'int main()':
Main.cc:6:12: error: 'yes' was not declared in this scope
((a+b==c)?yes:no)=n;
^
Main.cc:6:16: error: 'no' was not declared in this scope
((a+b==c)?yes:no)=n;
^