Run ID:141612

提交时间:2025-12-27 17:04:33

#include<iostream> // cin\cout\endl #include<cstdio> //scanf()\printf() #include<cstring> // strcpy()\strcat()\strcmp()\strlen()\memset() #include<cmath> //sqrt()\pow()\abs()\ceil()\floor()\max()\min() using namespace std; int a(int x){ cout<<x<<" "; x++; if(101>x) a(x); return 0; } int main(){ a(0); return 0; }