Run ID:102082
提交时间:2024-12-21 11:57:11
#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; }