OI-Codes/递归.cpp
2023-08-23 21:52:51 +08:00

22 lines
334 B
C++

#include <algorithm>
#include <iostream>
#include <iomanip>
#include <cstring>
#include <cstdio>
#include <stack>
#include <ctime>
#include <cmath>
#include <queue>
typedef long long l;
typedef double d;
typedef char c;
using namespace std;
void wjh(int x){
cout <<"×öÃÎ~"<<x<<endl;;
wjh(x+1);
}
int main(){
wjh(1);
return 0;
}