mirror of
https://github.com/wczffl-503/OI-Codes.git
synced 2025-07-07 18:06:58 +08:00
Update: Rename folder name to XSMOJ
This commit is contained in:
21
XSMOJ/递归.cpp
Normal file
21
XSMOJ/递归.cpp
Normal file
@ -0,0 +1,21 @@
|
||||
#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 <<"<EFBFBD><EFBFBD><EFBFBD><EFBFBD>~"<<x<<endl;;
|
||||
wjh(x+1);
|
||||
}
|
||||
int main(){
|
||||
wjh(1);
|
||||
return 0;
|
||||
}
|
Reference in New Issue
Block a user