Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
78544 石茂诤 累加问题 C++ Accepted 0 MS 256 KB 171 2024-06-22 16:08:06

Tests(1/1):


Code:

#include<bits/stdc++.h> using namespace std; int a(int x){ cout<<x<<"\n"; x++; if(x>100) return 0; a(x); } int main(){ a(1); return 0; }