Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
134262 李昊宇 累加问题 C++ Accepted 1 MS 264 KB 169 2025-10-26 11:55:05

Tests(1/1):


Code:

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