Run ID:103003
提交时间:2024-12-27 21:11:01
#include<bits/stdc++.h> using namespace std; void a(int x) { if(x>=18) { return; } x+=2; cout<<x<<endl; a(x); } int main() { int x=8; a(x); return 0; }