| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 155557 | 唐诗阳 | 累加问题 | C++ | Output Limit Exceeded | 0 MS | 268 KB | 374 | 2026-06-07 15:43:48 |
#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 s(int a){ cout<<a; if(a>100) return a; s(a); } int main(){ int x=0; cout<<s(x); return 0; }