Run ID:137246

提交时间:2025-11-16 21:33:06

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