Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
134261 晏莞煜 累加问题 C++ Accepted 5 MS 260 KB 187 2025-10-26 11:52:06

Tests(1/1):


Code:

#include<iostream> #include<cmath> using namespace std; void shu_chu(int x){ cout<<x<<endl; if(x<100){ shu_chu(++x); } } int main(){ int x=1; shu_chu(x); return 0; }