| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 142424 | 翁思宸 | 累加问题 | C++ | Accepted | 3 MS | 268 KB | 290 | 2026-01-09 17:59:11 |
//1525 累加问题(递归) #include<iostream> #include<cstdio> #include<cstring> #include<cmath> using namespace std; void use(int n){ int s=0; cout<<n<<endl; if(n<100){ n++; use(n); } } int main(){ int a=1; use(a); return 0; }