| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 147052 | 赖泓宇 | 02简单两数相加II | C++ | Compile Error | 0 MS | 0 KB | 312 | 2026-02-02 16:14:49 |
#include<iostream> // cin\cout\endl #include<cstdio> //scanf()\printf() #include<cstring> // strcpy()\strcat()\strcmp()\strlen()\memset() #include<cmath> //sqrt()\pow()\abs()\ceil()\floor()\max()\min() using namespace std; int main(){ int a,b,s; cin>>a>>b; s=a+b; cout<<s; }1
Main.cc:12:2: error: expected unqualified-id before numeric constant }1 ^