Run ID:134262
提交时间:2025-10-26 11:55:05
#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; }