| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 146946 | 陈奕涵 | 累加问题 | C++ | Accepted | 1 MS | 268 KB | 227 | 2026-02-01 13:43:47 |
#include<iostream> #include<cstdio> #include<cstring> #include<cmath> using namespace std; void f(int x){ if(x>100)return; cout<<x++<<endl; f(x); } int main(){ int x=1; f(x); return 0; }