| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 154113 | 鸡哥 | 08判断区间 | C++ | Compile Error | 0 MS | 0 KB | 174 | 2026-05-24 14:57:27 |
#include<bits/stdc++.h> using namespace std; int main(){ int a,n,y; cin>>a>>n>>y; if(a>n){ if(a<y){ cout<<"y"; }-+ }else{ cout<<"n"; } } }
Main.cc: In function 'int main()':
Main.cc:10:3: error: expected primary-expression before '}' token
}else{
^
Main.cc: At global scope:
Main.cc:14:1: error: expected declaration before '}' token
}
^