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