Run ID:7722

提交时间:2025-05-17 14:41:06

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