Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
102060 王思颜 累加问题 C++ Accepted 4 MS 264 KB 173 2024-12-21 11:46:15

Tests(1/1):


Code:

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