Run ID:128611
提交时间:2025-08-18 16:36:37
#include<bits/stdc++.h> using namespace std; void dg(int x) { if(x > 100) { cout << x << endl; return; } else { x++; cout << x << endl; dg(x); } } int main() { dg(0); return 0; }