Run ID:102083

提交时间:2024-12-21 11:57:22

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