Run ID:126076

提交时间:2025-07-16 11:03:13

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