Run ID:126080

提交时间:2025-07-16 11:05:39

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