Run ID:134261
提交时间:2025-10-26 11:52:06
#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; }