Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
138180 李馥甄 累加问题 C++ Accepted 3 MS 268 KB 151 2025-11-23 17:05:15

Tests(1/1):


Code:

#include <bits/stdc++.h> using namespace std; void sc(int x){ cout<<x<<endl; if(x<100){ sc(x+1); } } int main(){ sc(1); return 0; }