| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 145769 | 冰块ee | 07判断成绩 | C++ | Compile Error | 0 MS | 0 KB | 160 | 2026-01-25 18:58:38 |
#include<bits/stdc++.h> using namespace std; int n; int main(){ cin>>n; if(n>59){ cout<<"hot"; }else{ cout<<"cold" } }
Main.cc: In function 'int main()':
Main.cc:10:5: error: expected ';' before '}' token
}
^