| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 133698 | 陈峻徳 | 求和 | C++ | Compile Error | 0 MS | 0 KB | 81 | 2025-10-20 17:07:38 |
#include <iostream> using namespace std; intmain(){ cout<<"sum is"; cout }
Main.cc:3:9: error: ISO C++ forbids declaration of 'intmain' with no type [-fpermissive]
intmain(){
^
Main.cc: In function 'int intmain()':
Main.cc:6:1: error: expected ';' before '}' token
}
^
Main.cc:6:1: warning: statement has no effect [-Wunused-value]
Main.cc:6:1: warning: no return statement in function returning non-void [-Wreturn-type]