mirror of
https://github.com/wczffl-503/OI-Codes.git
synced 2025-05-10 08:10:27 +08:00
22 lines
334 B
C++
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;
|
|
}
|