Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
102299 | 胡思齐 | 02简单两数相加II | C++ | Compile Error | 0 MS | 0 KB | 108 | 2024-12-21 14:49:59 |
#include<iostream> using namespace std; intmain() { int a,b; cout<<a+b<<endl; return 0; }
Main.cc:3:9: error: ISO C++ forbids declaration of 'intmain' with no type [-fpermissive] intmain() ^