Location>code7788 >text

【Yuexingfei_qwq's original game】

Popularity:385 ℃/2025-03-31 20:33:05

OK, Yuxingfei_qwq in the title refers to me.
Continuous updates...
If you have any bugs, please reply in time or send me a private message...


This article was published simultaneously in the following blog:

Luogu:/article/a0nqm3my(If you can't see it, you can see it/article/a0nqm3my, remember to press the "Update Article Content" button every time you click in)

CSDN:/yuexingfei_111/article/details/146573222?spm=1011.2415.3001.5331

Blog Park:/yxf2013/p/18797025


".h" file (self-programmed header file)

game_1.h (common game functions):

#include <iostream>
 #include <>
 #include <>
 #include <cmath>
 #include <>
 #include <algorithm>
 #include <>
 #include <>
 #define _cl system("cls")
 #define _pa system("pause")
 #define _sl(x) Sleep(x)
 #define _PI 3.1415926535897932384626
 #define _ge getch()
 #define _Get(x) GetAsyncKeyState('x')
 #define _KE(x) ((GetAsyncKeyState(x) & 0x8000) ? 1:0)
 #define _sr srand(time(NULL))
 #define _ra(a, b) (rand() % (b - a + 1)) + a
 using namespace std;
 typedef long long ll;
 typedef string str;
 using ull = unsigned long long;
 inline ll x_y(ll x, ll y, ll p = (1LL << 60)) {//x's y-power mode p
	 int ans_1 = 1;
	 while (y) {
		 if (y & 1) {
			 (ans_1 *= x) %= p;
		 }
		 (x *= x) %= p;
		 y >>= 1;
	 }
	 return ans_1;
 }
 inline void Sleep_write(const string &s, const int &y = 10, const string &t = "cout") {// verbatim output
	 for (auto i : s) {
		 if (t == "cin") {
			 cout << i;
		 } else {
			 putchar(i);
		 }
		 _sl(y);
	 }
 }
 inline void setcolor(int color) {//Set color
	 HANDLE hConsole = GetStdHandle(STD_OUTPUT_HANDLE);
	 SetConsoleTextAttribute(hConsole, color);
 }
 inline void wait(int d = 100) {
	 _sl(d);
	 _ge;
 }
 inline char get(str s) {
	 char ch[114514];
	 int l = 0;
	 for (auto i : s) {
		 ch[++l] = i;
	 }
	 while (true) {
		 char x = getchar();
		 for (int i = 1; i <= l; i++) {
			 if (x == ch[i]) {
				 return x;
			 }
		 }
		 Sleep_write("Error: Invalid input\n");
		 _sl(2000);
		 _pa;
	 }
 }

lottery

#include <bits/stdc++.h>
 #include <iostream>
 #include <>
 #include <>
 #include <cmath>
 #include <>
 #include <cstdlib>
 #include <cstdio>
 #include <>
 #include <algorithm>
 #include <>
 #include <string>
 #include <>
 #include <>
 #define w(x) while(x)
 #define cl system("cls")
 #define Sl(x) Sleep(x)
 #define f(i, a, b) for (int i = a; i <= b; i++)

 using namespace std;

 int a[10][10], money = 20, h1, h2;

 void init() {
	 srand(time(0));
	 f(i, 1, 3) {
		 f(j, 1, 3) {
			 a[i][j] = rand() % 10 + 1;
		 }
	 }
 }

 void start() {
	 puts("Come and draw!!!");
	 puts("Produced by yuxingfei, it must be a fine product!");
	 puts("Please press any key to start the game...");
	 getch();
	 cl;
	 puts ("Loading...");
	 Sl(2000);
	 cl;
 }

 void out() {
	 cl;
	 int r = rand() % 3 + 1, l = rand() % 3 + 1;
	 h1 = r, h2 = l;
	 f(i, 1, 3) {
		 f(j, 1, 3) {
			 if (i == r && j == l) {
				 SetConsoleTextAttribute(GetStdHandle(STD_OUTPUT_HANDLE), FOREGROUND_INTENSITY | FOREGROUND_RED);
			 } else {
				 SetConsoleTextAttribute(GetStdHandle(STD_OUTPUT_HANDLE), FOREGROUND_INTENSITY | FOREGROUND_BLUE | FOREGROUND_RED | FOREGROUND_GREEN);
			 }
			 printf ("%d", a[i][j]);
			 if (j != 3) {
				 printf ("\t");
			 }
		 }
		 printf ("\n");
	 }
	 SetConsoleTextAttribute(GetStdHandle(STD_OUTPUT_HANDLE), FOREGROUND_INTENSITY | FOREGROUND_BLUE | FOREGROUND_RED | FOREGROUND_GREEN);
 }

 int main() {
	 init();
	 start();
	 w(1) {
		 cl;
		 if (money < 4) {
			 puts("You don't have enough money to draw!");
			 break;
		 }
		 printf ("You have %d yuan now, and you will draw 4 yuan every time.\nHow many times do you want to rotate this time? (Enter 123456789 to reset the turntable)\n", money);
		 int x;
		 scanf ("%d", &x);
		 if (x == 123456789) {
			 init();
		 } else {
			 for (int i = 1; i <= x; i++) {
				 out();
				 int t;
				 if (i == x) {
					 t = 3000;
				 } else {
					 if (i == x - 1) {
						 t = 2000;
					 } else {
						 if (i == x - 2) {
							 t = 1000;
						 } else {
							 if (i == x - 3) {
								 t = 500;
							 } else {
								 t = 10;
							 }
						 }
					 }
				 }
				 Sl(t);
			 }
			 money = money - 4 + a[h1][h2];
			 printf ("Congratulations on getting %d yuan!\n", a[h1][h2]);
			 Sl(2500);
		 }
	 }
	 return 0;
 }

Dodge the anvil

#include <bits/stdc++.h>
 #include <iostream>
 #include <>
 #include <cmath>
 #include <>
 #include <cstdio>
 #include <>
 #include <cstdlib>
 #include <algorithm>
 #include <>

 using namespace std;

 int r = -1, b = -1, rf = 3, bf = 3;
 int n, m;
 int a[10];

 void init() {
	 memset(a, 0, sizeof(a));
 }

 void out() {
	 system ("cls");
	 printf ("Map: \n******************\n");
	 for (int i = 0; i < 10; i++) {
		 if (a[i] == 0) {
			 if (i == r) {
				 SetConsoleTextAttribute(GetStdHandle(STD_OUTPUT_HANDLE), FOREGROUND_INTENSITY | FOREGROUND_RED);
				 printf ("i ");
				 SetConsoleTextAttribute(GetStdHandle(STD_OUTPUT_HANDLE), FOREGROUND_INTENSITY | FOREGROUND_BLUE | FOREGROUND_RED | FOREGROUND_GREEN);
			 } else {
				 if (i == b) {
					 SetConsoleTextAttribute(GetStdHandle(STD_OUTPUT_HANDLE), FOREGROUND_INTENSITY | FOREGROUND_BLUE);
					 printf ("i ");
					 SetConsoleTextAttribute(GetStdHandle(STD_OUTPUT_HANDLE), FOREGROUND_INTENSITY | FOREGROUND_BLUE | FOREGROUND_RED | FOREGROUND_GREEN);
				 } else {
					 printf ("/ ");
				 }
			 }
		 } else {
			 if (a[i] == 1) {
				 if (i == r) {
					 SetConsoleTextAttribute(GetStdHandle(STD_OUTPUT_HANDLE), FOREGROUND_INTENSITY | FOREGROUND_RED | FOREGROUND_GREEN);
					 printf ("* ");
					 SetConsoleTextAttribute(GetStdHandle(STD_OUTPUT_HANDLE), FOREGROUND_INTENSITY | FOREGROUND_BLUE | FOREGROUND_RED | FOREGROUND_GREEN);
					 rf--;
				 }
				 if (i == b) {
					 SetConsoleTextAttribute(GetStdHandle(STD_OUTPUT_HANDLE), FOREGROUND_INTENSITY | FOREGROUND_RED | FOREGROUND_GREEN);
					 printf ("* ");
					 SetConsoleTextAttribute(GetStdHandle(STD_OUTPUT_HANDLE), FOREGROUND_INTENSITY | FOREGROUND_BLUE | FOREGROUND_RED | FOREGROUND_GREEN);
					 bf--;
				 }
				 if (i != b && i != r) {
					 SetConsoleTextAttribute(GetStdHandle(STD_OUTPUT_HANDLE), FOREGROUND_INTENSITY);
					 printf ("# ");
					 SetConsoleTextAttribute(GetStdHandle(STD_OUTPUT_HANDLE), FOREGROUND_INTENSITY | FOREGROUND_BLUE | FOREGROUND_RED | FOREGROUND_GREEN);
				 }
			 }
		 }
	 }
	 printf ("\n*********************\n");
	 printf ("Red Life : %d\nBlue Life : %d\n", rf, bf);
 }//"#" : There is an anvil but no one; "*" : There is an anvil and there is someone; "/" : empty; "i" : people (corresponding to color)

 void ran() {
	 n = rand() % 5 + 1;
	 printf ("fall %d anvil\n", n);
	 for (int i = 1; i <= n; i++) {
		 while (a[m] != 0) {
			 m = rand() % 10;
		 }
		 a[m] = 1;
	 }
 }

 int main() {
	 srand(time(0));
	 init();
	 while (1) {
		 out();
		 printf ("Red side selection position (1~10): \n");
		 scanf ("%d", &r);
		 r--;
		 printf ("Blue side selection position (1~10): \n");
		 scanf ("%d", &b);
		 b--;
		 out();
		 printf ("ran...\n");
		 Sleep(1000);
		 ran();
		 Sleep(1000);
		 out();
		 Sleep(2500);
		 init();
		 if (a[r] == 1)
			 rf--;
		 if (a[b] == 1)
			 bf--;
		 if (rf == 0 || bf == 0)
			 break;
	 }
	 if (rf > bf)
		 printf ("Red win!\n");
	 if (rf < bf)
		 printf ("Blue wins!\n");
	 if (rf == bf)
		 printf ("Track!\n");
	 return 0;
 }

MC Party Welfare

Get up and fight

#include<>
 #include<>
 #include<>
 #include<>
 #include<>

 char a[50][50] = {"OOOOOOOOOOOOOOOOOOOO",
                   "OA O",
                   "O H ​​O O",
                   "O OOOOOO O",
                   "O O R O",
                   "O WO",
                   "OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO
                  };

 struct Player {
	 int shengming, gongji, fangyu;
 };

 Player P1, P2;

 bool Aw = true, Ww = true;

 int x = 2, y = 2, p = 4, q = 17, n = 1, m = 1, c = 5, b = 18, sx = 30, sy = 30, gx = 30, gy = 30, fx = 30, fy = 30;

 void out() {
	 system("cls");
	 for (int i = 0; i <= 7; i++) {
		 for (int j = 0; j <= 20; j++) {
			 printf ("%c", a[i][j]);
		 }
		 switch (i) {
			 case 0:
				 printf ("H: Player 1 (WASD Mobile)");
				 break;
			 case 1:
				 printf (" A:H's bed");
				 break;
			 case 2:
				 printf (" R: Player 2 (IJKL Mobile)");
				 break;
			 case 3:
				 printf ("W:R's bed");
				 break;
			 case 4:
				 printf (" O:wall");
				 break;
			 case 5:
				 printf (" N:Add attack");
				 break;
			 case 6:
				 printf (" F: Increase defense");
				 break;
			 case 7:
				 printf (" S: Increase life");
				 break;
		 }
		 printf ("\n");
	 }
	 printf ("H:\nLife: %d\nAttack: %d\nDefense: %d\n\n", , , );
	 printf ("R:\nLife: %d\nAttack: %d\nDefense: %d\n\n", , , );
	 if (Aw) {
		 printf ("H crystal: YES\n");
	 } else {
		 printf ("H crystal: NO\n");
	 }
	 if (Ww) {
		 printf ("R crystal: YES\n");
	 } else {
		 printf ("R crystal: NO\n");
	 }
 }

 void SetFont(int size) {
	 CONSOLE_FONT_INFOEX cfi;
	  = sizeof cfi;
	  = 0;
	  = 0;
	  = size;//Set the font size
	  = FF_DONTCARE;
	  = FW_NORMAL; //Font thickness
	 wcscpy_s(, L"install"install");//Set font
	 SetCurrentConsoleFontEx(GetStdHandle(STD_OUTPUT_HANDLE), FALSE, &cfi);
	 HANDLE handle = GetStdHandle(STD_OUTPUT_HANDLE);
	 CONSOLE_FONT_INFO consoleCurrentFont;
	 GetCurrentConsoleFont(handle, FALSE, &consoleCurrentFont);
 }

 void xuan() {
	 for (int i = 1; i <= 2; i++) {
		 if (i == 1) {
			 printf ("Please H select! (Enter the previous serial number)\n");
		 } else {
			 printf ("Please R select! (Enter the previous serial number)\n");
		 }
		 printf ("1. Warrior\nLife: 200\n Attack: 50\n Defense: 50\n");
		 printf ("2. Armored Man\nLife: 150\nAttack: 40\nDefense: 80\n");
		 printf ("Prototype\nLife: 250\nAttack: 40\nDefense: 40\n");
		 printf ("Prototype\nLife: 130\nAttack: 45\nDefense: 85\n");
		 printf ("Beam Machine\nLife: 135\nAttack: 65\nDefense: 40\n");
		 int d;
		 scanf ("%d", &d);
		 switch (d) {
			 case 1:
				 if (i == 1) {
					  = 200;
					  = 50;
					  = 50;
				 } else {
					  = 200;
					  = 50;
					  = 50;
				 }
				 break;
			 case 2:
				 if (i == 1) {
					  = 150;
					  = 40;
					  = 80;
				 } else {
					  = 150;
					  = 40;
					  = 80;
				 }
				 break;
			 case 3:
				 if (i == 1) {
					  = 250;
					  = 40;
					  = 40;
				 } else {
					  = 250;
					  = 40;
					  = 40;
				 }
				 break;
			 case 4:
				 if (i == 1) {
					  = 130;
					  = 45;
					  = 85;
				 } else {
					  = 130;
					  = 45;
					  = 85;
				 }
				 break;
			 case 5:
				 if (i == 1) {
					  = 135;
					  = 65;
					  = 40;
				 } else {
					  = 135;
					  = 65;
					  = 40;
				 }
				 break;
		 }
		 system("cls");
	 }
 }

 int zhan() {
	 system("cls");
	 printf ("In combat...\n");
	 Sleep(2500);
	 int P1s = , P1g = , P1f = , P2s = , P2g = , P2f = ;
	 while (1) {
		 if (P2g - P1f > 0) {
			 P1s = P1s - (P2g - P1f);
		 }
		 if (P1g - P2f > 0) {
			 P2s = P2s - (P1g - P2f);
		 }

		 if ( <= && >= ) {
			 printf ("Cannot engage!\n");
			 Sleep(1000);
			 a[p][q] = ' ';
			 p = 4, q = 17;
			 a[p][q] = 'R';
			 a[x][y] = ' ';
			 x = 2, y = 2;
			 a[x][y] = 'H';
			 return 100;
		 }

		 if (P1s <= 0 && P2s > 0) {
			 printf ("H dog is brought!\n");
			 Sleep(5000);
			 if (Aw) {
				 a[x][y] = ' ';
				 x = 2, y = 2;
				 a[x][y] = 'H';
				 if (p == x && q == y) {
					 p = 5, q = 9;
					 a[p][q] = 'R';
				 }
				 return 99;
			 } else {
				 return 1;
			 }
		 }
		 if (P2s <= 0 && P1s > 0) {
			 printf ("R dog is brought!\n");
			 Sleep(5000);
			 if (Ww) {
				 a[p][q] = ' ';
				 p = 4, q = 17;
				 a[p][q] = 'R';
				 if (p == x && q == y) {
					 x = 1, y = 9;
					 a[x][y] = 'H';
				 }
				 return 99;
			 } else {
				 return 2;
			 }
		 }
		 if (P2s <= 0 && P1s <= 0) {
			 printf ("It's all taken!\n");
			 Sleep(5000);
			 if (Ww && Aw) {
				 a[p][q] = ' ';
				 p = 4, q = 17;
				 a[p][q] = 'R';
				 a[x][y] = ' ';
				 x = 2, y = 2;
				 a[x][y] = 'H';
				 return 99;
			 }
			 if (Ww && !Aw) {
				 return 2;
			 }
			 if (!Ww && Aw) {
				 return 1;
			 }
			 if (!Ww && !Aw) {
				 return 3;
			 }
		 }
	 }
 }

 void win(int g) {
	 if (g == 1) {
		 printf("\'R\' Win!\n");
		 Sleep(5000);
		 system("pause");
	 } else {
		 if (g == 2) {
			 printf("\'H\' Win!\n");
			 Sleep(5000);
			 system("pause");
		 } else {
			 printf("Track!\n");
			 Sleep(5000);
			 system("pause");
		 }
	 }
 }

 void rans(char cha) {
	 int f = rand() % 2;
	 a[sx][sy] = cha;
	 sx = 35, sy = 35;
	 switch (f) {
		 case 0:
			 sx = 5, sy = 1;
			 break;
		 case 1:
			 sx = 1, sy = 18;
			 break;
	 }
	 a[sx][sy] = 'S';
 }

 void rang(char cha) {
	 int ff = rand() % 3;
	 a[gx][gy] = cha;
	 gx = 35, gy = 35;
	 switch (ff) {
		 case 0:
			 gx = 2, gy = 15;
			 break;
		 case 1:
			 gx = 2, gy = 8;
			 break;
		 case 2:
			 gx = 4, gy = 10;
			 break;
	 }
	 a[gx][gy] = 'N';
 }

 void ranf(char cha) {
	 int ffff = rand() % 3;
	 a[fx][fy] = cha;
	 fx = 35, fy = 35;
	 switch (ffff) {
		 case 0:
			 fx = 2, fy = 10;
			 break;
		 case 1:
			 fx = 4, fy = 4;
			 break;
		 case 2:
			 fx = 4, fy = 8;
			 break;
	 }
	 a[fx][fy] = 'F';
 }

 int main() {
	 system("title wake up war");
	 SetFont(25);
	 srand(time(NULL));
	 system("color 0a");
	 xuan();
	 HANDLE handle = GetStdHandle(STD_OUTPUT_HANDLE);
	 CONSOLE_CURSOR_INFO CursorInfo;
	 GetConsoleCursorInfo(handle, &CursorInfo);//Get the console cursor information
	  = false; //Hide console cursor
	 SetConsoleCursorInfo(handle, &CursorInfo);//Set the console cursor status
	 out();
	 ranf(' ');
	 rang(' ');
	 rans(' ');
	 while (1) {
		 if (GetAsyncKeyState('S')) {
			 if (a[x + 1][y] != 'O') {
				 a[x][y] = ' ';
				 x++;
				 a[x][y] = 'H';
			 }
		 }
		 if (GetAsyncKeyState('D')) {
			 if (a[x][y + 1] != 'O') {
				 a[x][y] = ' ';
				 y++;
				 a[x][y] = 'H';
			 }
		 }
		 if (GetAsyncKeyState('A')) {
			 if (a[x][y - 1] != 'O') {
				 a[x][y] = ' ';
				 y--;
				 a[x][y] = 'H';
			 }
		 }
		 if (GetAsyncKeyState('W')) {
			 if (a[x - 1][y] != 'O') {
				 a[x][y] = ' ';
				 x--;
				 a[x][y] = 'H';
			 }
		 }

		 if (GetAsyncKeyState('K')) {
			 if (a[p + 1][q] != 'O') {
				 a[p][q] = ' ';
				 p++;
				 a[p][q] = 'R';
			 }
		 }
		 if (GetAsyncKeyState('L')) {
			 if (a[p][q + 1] != 'O') {
				 a[p][q] = ' ';
				 q++;
				 a[p][q] = 'R';

			 }
		 }
		 if (GetAsyncKeyState('J')) {
			 if (a[p][q - 1] != 'O') {
				 a[p][q] = ' ';
				 q--;
				 a[p][q] = 'R';
			 }
		 }
		 if (GetAsyncKeyState('I')) {
			 if (a[p - 1][q] != 'O') {
				 a[p][q] = ' ';
				 p--;
				 a[p][q] = 'R';
			 }
		 }

		 if (x == p && y == q) {
			 int jie = zhan();
			 if (jie == 1) {
				 win(1);
				 break;
			 } else {
				 if (jie == 2) {
					 win(2);
					 break;
				 } else {
					 if (jie < 99) {
						 win(3);
						 break;
					 }
				 }
			 }
		 }

		 if (x == c && y == b) {
			 a[c][b] = ' ';
			 c = 48, b = 49;
			 Ww = false;
		 }
		 if (p == n && q == m) {
			 a[n][m] = ' ';
			 n = 39, m = 35;
			 Aw = false;
		 }

		 if (c == p && b == q && Ww) {
			 a[c][b] = 'R';
			 while (1) {
				 if (!(c == p && b == q))
					 a[c][b] = 'W';
				 break;
			 }
		 } else {
			 a[c][b] = 'W';
		 }
		 if (n == x && m == y && Aw) {
			 a[n][m] = 'H';
			 while (1) {
				 if (!(n == x && m == y))
					 a[n][m] = 'A';
				 break;
			 }
		 } else {
			 a[n][m] = 'A';
		 }

		 if (sx == x && sy == y) {
			  += 5;
			 Sleep(10);
			 rans('H');
		 }
		 if (sx == p && sy == q) {
			  += 5;
			 Sleep(10);
			 rans('R');
		 }

		 if (gx == x && gy == y) {
			  += 5;
			 rang('H');
		 }
		 if (gx == p && gy == q) {
			  += 5;
			 rang('R');
		 }

		 if (fx == x && fy == y) {
			  += 5;
			 ranf('H');
		 }
		 if (fx == p && fy == q) {
			  += 5;
			 ranf('R');
		 }

		 out();
	 }
	 return 0;
 }

Crystal War

#include<>
 #include<>
 #include<>
 #include<>
 #include<>

 char a[50][50] = {"OOOOOOOOOOOOOOOOOOOO",
                   "OA O",
                   "O H ​​O O",
                   "O OOOOOO O",
                   "O O R O",
                   "O WO",
                   "OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO
                  };

 struct Player {
	 int shengming, gongji, fangyu;
 };

 Player P1, P2;

 bool Aw = true, Ww = true, Z = false;

 int x = 2, y = 2, p = 4, q = 17, n = 1, m = 1, c = 5, b = 18, sx = 30, sy = 30, gx = 30, gy = 30, fx = 30, fy = 30, A = 1000, W = 1000;

 void out() {
	 system("cls");
	 for (int i = 0; i <= 7; i++) {
		 for (int j = 0; j <= 20; j++) {
			 printf ("%c", a[i][j]);
		 }
		 switch (i) {
			 case 0:
				 printf ("H: Player 1 (WASD Mobile)");
				 break;
			 case 1:
				 printf (" A:H's crystal");
				 break;
			 case 2:
				 printf (" R: Player 2 (IJKL Mobile)");
				 break;
			 case 3:
				 printf (" W:R's crystal");
				 break;
			 case 4:
				 printf (" O:wall");
				 break;
			 case 5:
				 printf (" N:Add attack");
				 break;
			 case 6:
				 printf (" F: Increase defense");
				 break;
			 case 7:
				 printf (" S: Increase life");
				 break;
		 }
		 printf ("\n");
	 }
	 printf ("H:\nLife: %d\nAttack: %d\nDefense: %d\n\n", , , );
	 printf ("R:\nLife: %d\nAttack: %d\nDefense: %d\n\n", , , );
	 if (Aw) {
		 printf ("H Crystal: YES Blood: %d\n", A);
	 } else {
		 printf ("H crystal: NO\n");
	 }
	 if (Ww) {
		 printf ("R crystal: YES health: %d\n", W);
	 } else {
		 printf ("R crystal: NO\n");
	 }
 }

 void SetFont(int size) {
	 CONSOLE_FONT_INFOEX cfi;
	  = sizeof cfi;
	  = 0;
	  = 0;
	  = size;//Set the font size
	  = FF_DONTCARE;
	  = FW_NORMAL; //Font thickness
	 wcscpy_s(, L"install"install");//Set font
	 SetCurrentConsoleFontEx(GetStdHandle(STD_OUTPUT_HANDLE), FALSE, &cfi);
	 HANDLE handle = GetStdHandle(STD_OUTPUT_HANDLE);
	 CONSOLE_FONT_INFO consoleCurrentFont;
	 GetCurrentConsoleFont(handle, FALSE, &consoleCurrentFont);
 }

 void xuan() {
	 for (int i = 1; i <= 2; i++) {
		 if (i == 1) {
			 printf ("Please select your profession! (Enter the previous serial number)\n");
		 } else {
			 printf ("Please R select your profession! (Enter the previous serial number)\n");
		 }
		 printf ("1. Warrior\nLife: 200\n Attack: 50\n Defense: 50\n");
		 printf ("2. Armored Man\nLife: 150\nAttack: 40\nDefense: 80\n");
		 printf ("Prototype\nLife: 250\nAttack: 40\nDefense: 40\n");
		 printf ("Prototype\nLife: 130\nAttack: 45\nDefense: 85\n");
		 printf ("Beam Machine\nLife: 135\nAttack: 65\nDefense: 40\n");
		 int d;
		 scanf ("%d", &d);
		 switch (d) {
			 case 1:
				 if (i == 1) {
					  = 200;
					  = 50;
					  = 50;
				 } else {
					  = 200;
					  = 50;
					  = 50;
				 }
				 break;
			 case 2:
				 if (i == 1) {
					  = 150;
					  = 40;
					  = 80;
				 } else {
					  = 150;
					  = 40;
					  = 80;
				 }
				 break;
			 case 3:
				 if (i == 1) {
					  = 250;
					  = 40;
					  = 40;
				 } else {
					  = 250;
					  = 40;
					  = 40;
				 }
				 break;
			 case 4:
				 if (i == 1) {
					  = 130;
					  = 45;
					  = 85;
				 } else {
					  = 130;
					  = 45;
					  = 85;
				 }
				 break;
			 case 5:
				 if (i == 1) {
					  = 135;
					  = 65;
					  = 40;
				 } else {
					  = 135;
					  = 65;
					  = 40;
				 }
				 break;
		 }
		 system("cls");
	 }
 }

 int zhan() {//I think this function is not something that my strength can write
	 Z = true;
	 system("cls");
	 printf ("In combat...\n");
	 Sleep(2500);
	 int P1s = , P1g = , P1f = , P2s = , P2g = , P2f = ;
	 while (1) {
		 if (P2g - P1f > 0) {
			 P1s = P1s - (P2g - P1f);
		 }
		 if (P1g - P2f > 0) {
			 P2s = P2s - (P1g - P2f);
		 }

		 if ( <= && >= ) {
			 printf ("Cannot engage!\n");
			 Sleep(1000);
			 a[p][q] = ' ';
			 p = 4, q = 17;
			 a[p][q] = 'R';
			 a[x][y] = ' ';
			 x = 2, y = 2;
			 a[x][y] = 'H';
			 Z = false;
			 return 100;
		 }

		 if (P1s <= 0 && P2s > 0) {
			 printf ("H dog is brought!\n");
			 Sleep(5000);
			 if (Aw) {
				 a[x][y] = ' ';
				 x = 2, y = 2;
				 a[x][y] = 'H';
				 if (p == x && q == y) {
					 p = 5, q = 9;
					 a[p][q] = 'R';
				 }
				 Z = false;
				 return 99;
			 } else {
				 Z = false;
				 return 1;
			 }
		 }
		 if (P2s <= 0 && P1s > 0) {
			 printf ("R dog is brought!\n");
			 Sleep(5000);
			 if (Ww) {
				 a[p][q] = ' ';
				 p = 4, q = 17;
				 a[p][q] = 'R';
				 if (p == x && q == y) {
					 x = 1, y = 9;
					 a[x][y] = 'H';
				 }
				 Z = false;
				 return 99;
			 } else {
				 Z = false;
				 return 2;
			 }
		 }
		 if (P2s <= 0 && P1s <= 0) {
			 printf ("It's all taken!\n");
			 Sleep(5000);
			 if (Ww && Aw) {
				 a[p][q] = ' ';
				 p = 4, q = 17;
				 a[p][q] = 'R';
				 a[x][y] = ' ';
				 x = 2, y = 2;
				 a[x][y] = 'H';
				 Z = false;
				 return 99;
			 }
			 if (Ww && !Aw) {
				 Z = false;
				 return 2;
			 }
			 if (!Ww && Aw) {
				 Z = false;
				 return 1;
			 }
			 if (!Ww && !Aw) {
				 Z = false;
				 return 3;
			 }
		 }
	 }
 }

 void win(int g) {
	 if (g == 1) {
		 printf("\'R\' Win!\n");
		 Sleep(5000);
		 system("pause");
	 } else {
		 if (g == 2) {
			 printf("\'H\' Win!\n");
			 Sleep(5000);
			 system("pause");
		 } else {
			 printf("Track!\n");
			 Sleep(5000);
			 system("pause");
		 }
	 }
 }

 void rans(char cha) {
	 int f = rand() % 2;
	 a[sx][sy] = cha;
	 sx = 35, sy = 35;
	 switch (f) {
		 case 0:
			 sx = 5, sy = 1;
			 break;
		 case 1:
			 sx = 1, sy = 18;
			 break;
	 }
	 a[sx][sy] = 'S';
 }

 void rang(char cha) {
	 int ff = rand() % 3;
	 a[gx][gy] = cha;
	 gx = 35, gy = 35;
	 switch (ff) {
		 case 0:
			 gx = 2, gy = 15;
			 break;
		 case 1:
			 gx = 2, gy = 8;
			 break;
		 case 2:
			 gx = 4, gy = 10;
			 break;
	 }
	 a[gx][gy] = 'N';
 }

 void ranf(char cha) {
	 int ffff = rand() % 3;
	 a[fx][fy] = cha;
	 fx = 35, fy = 35;
	 switch (ffff) {
		 case 0:
			 fx = 2, fy = 10;
			 break;
		 case 1:
			 fx = 4, fy = 4;
			 break;
		 case 2:
			 fx = 4, fy = 8;
			 break;
	 }
	 a[fx][fy] = 'F';
 }

 int main() {
	 system("title Crystal War");
	 SetFont(25);
	 srand(time(NULL));
	 system("color 0a");
	 xuan();
	 out();
	 ranf(' ');
	 rang(' ');
	 rans(' ');
	 while (1) {
		 if (GetAsyncKeyState('S')) {
			 if (a[x + 1][y] != 'O') {
				 a[x][y] = ' ';
				 x++;
				 a[x][y] = 'H';
			 }
		 }
		 if (GetAsyncKeyState('D')) {
			 if (a[x][y + 1] != 'O') {
				 a[x][y] = ' ';
				 y++;
				 a[x][y] = 'H';
			 }
		 }
		 if (GetAsyncKeyState('A')) {
			 if (a[x][y - 1] != 'O') {
				 a[x][y] = ' ';
				 y--;
				 a[x][y] = 'H';
			 }
		 }
		 if (GetAsyncKeyState('W')) {
			 if (a[x - 1][y] != 'O') {
				 a[x][y] = ' ';
				 x--;
				 a[x][y] = 'H';
			 }
		 }

		 if (GetAsyncKeyState('K')) {
			 if (a[p + 1][q] != 'O') {
				 a[p][q] = ' ';
				 p++;
				 a[p][q] = 'R';
			 }
		 }
		 if (GetAsyncKeyState('L')) {
			 if (a[p][q + 1] != 'O') {
				 a[p][q] = ' ';
				 q++;
				 a[p][q] = 'R';

			 }
		 }
		 if (GetAsyncKeyState('J')) {
			 if (a[p][q - 1] != 'O') {
				 a[p][q] = ' ';
				 q--;
				 a[p][q] = 'R';
			 }
		 }
		 if (GetAsyncKeyState('I')) {
			 if (a[p - 1][q] != 'O') {
				 a[p][q] = ' ';
				 p--;
				 a[p][q] = 'R';
			 }
		 }

		 if (x == p && y == q) {
			 int jie = zhan();
			 if (jie == 1) {
				 win(1);
				 break;
			 } else {
				 if (jie == 2) {
					 win(2);
					 break;
				 } else {
					 if (jie < 99) {
						 win(3);
						 break;
					 }
				 }
			 }
		 }

		 if (x == c && y == b && !Z) {
			 W -= ;
			 Sleep(500);
			 if (W <= 0) {
				 a[c][b] = ' ';
				 c = 48, b = 49;
				 Ww = false;
			 }
		 }
		 if (p == n && q == m && !Z) {
			 A -= ;
			 Sleep(500);
			 if (A <= 0) {
				 a[n][m] = ' ';
				 n = 48, m = 49;
				 Aw = false;
			 }
		 }

		 if (c == p && b == q && Ww) {
			 a[c][b] = 'R';
			 while (1) {
				 if (!(c == p && b == q))
					 a[c][b] = 'W';
				 break;
			 }
		 } else {
			 a[c][b] = 'W';
		 }
		 if (n == x && m == y && Aw) {
			 a[n][m] = 'H';
			 while (1) {
				 if (!(n == x && m == y))
					 a[n][m] = 'A';
				 break;
			 }
		 } else {
			 a[n][m] = 'A';
		 }

		 if (sx == x && sy == y) {
			  += 5;
			 A += 2;
			 Sleep(10);
			 rans('H');
		 }
		 if (sx == p && sy == q) {
			  += 5;
			 W += 2;
			 Sleep(10);
			 rans('R');
		 }

		 if (gx == x && gy == y) {
			  += 5;
			 rang('H');
		 }
		 if (gx == p && gy == q) {
			  += 5;
			 rang('R');
		 }

		 if (fx == x && fy == y) {
			  += 5;
			 ranf('H');
		 }
		 if (fx == p && fy == q) {
			  += 5;
			 ranf('R');
		 }

		 out();
	 }
	 return 0;
 }

Offensive and defensive battle

#include <bits/stdc++.h>
 #include <iostream>
 #include <>
 #include <>
 #include <cmath>
 #include <>
 #include <cstdlib>
 #include <cstdio>
 #include <>
 #include <algorithm>
 #include <>
 #include <string>
 #include <>
 #include <>
 #define w(x) while(x)
 #define cl system("cls")
 #define Sl(x) Sleep(x)

 using namespace std;

 char a[50][50] = {"OOOOOOOOOOOOOOOOOOOOOOOOO",
                   "O WO",
                   "O O O",
                   "OH OOOOO R WO",
                   "O O O",
                   "O WO",
                   "OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO
                  };

 struct Player {
	 int shengming, gongji, fangyu;
 };

 Player P1, P2;

 bool W1 = true, W2 = true, W3 = true;

 int x = 3, y = 1, p = 3, q ​​= 21, n = 1, m = 23, c = 3, b = 23, f = 5, j = 23, sx = 30, sy = 30, gx = 30, gy = 30, fx = 30, fy = 30;

 int ttt;
 int t = 100000;

 void out() {
	 cl;
	 for (int i = 0; i <= 7; i++) {
		 for (int j = 0; j <= 24; j++) {
			 printf ("%c", a[i][j]);
		 }
		 printf (" ");
		 switch (i) {
			 case 0:
				 printf ("H: Player 1 (WASD Mobile)");
				 break;
			 case 1:
				 printf ("R: Player 2 (IJKL Mobile)");
				 break;
			 case 2:
				 printf ("W:R's bed");
				 break;
			 case 3:
				 printf ("O:wall");
				 break;
			 case 4:
				 printf ("N:Add attack");
				 break;
			 case 5:
				 printf ("F:Add defense");
				 break;
			 case 6:
				 printf ("S: Increase Life");
				 break;
		 }
		 printf ("\n");
	 }
	 printf ("H:\nLife: %d\nAttack: %d\nDefense: %d\n\n", , , );
	 printf ("R:\nLife: %d\nAttack: %d\nDefense: %d\n\n", , , );
	 if (W1) {
		 printf ("Bed W1:YES\n");
	 } else {
		 printf ("Bed W1:NO\n");
	 }
	 if (W2) {
		 printf ("Bed W2:YES\n");
	 } else {
		 printf ("Bed W2:NO\n");
	 }
	 if (W3) {
		 printf ("Bed W3:YES\n");
	 } else {
		 printf ("Bed W3:NO\n");
	 }
	 printf ("Remaining time: %dms\n", t - (int)clock() + ttt);
 }

 void SetFont(int size) {
	 CONSOLE_FONT_INFOEX cfi;
	  = sizeof cfi;
	  = 0;
	  = 0;
	  = size;//Set the font size
	  = FF_DONTCARE;
	  = FW_NORMAL; //Font thickness
	 wcscpy_s(, L"install"install");//Set font
	 SetCurrentConsoleFontEx(GetStdHandle(STD_OUTPUT_HANDLE), FALSE, &cfi);
	 HANDLE handle = GetStdHandle(STD_OUTPUT_HANDLE);
	 CONSOLE_FONT_INFO consoleCurrentFont;
	 GetCurrentConsoleFont(handle, FALSE, &consoleCurrentFont);
 }

 void xuan() {
	 for (int i = 1; i <= 2; i++) {
		 if (i == 1) {
			 printf ("Please H select the occupation! (Enter the previous serial number)\n");
		 } else {
			 printf ("Please R select career! (Enter the previous serial number)\n");
		 }
		 printf ("1. Warrior\nLife: 200\n Attack: 50\n Defense: 50\n");
		 printf ("2. Armored Man\nLife: 150\nAttack: 40\nDefense: 80\n");
		 printf ("Prototype\nLife: 250\nAttack: 40\nDefense: 40\n");
		 printf ("Prototype\nLife: 130\nAttack: 45\nDefense: 85\n");
		 printf ("Beam Machine\nLife: 135\nAttack: 65\nDefense: 40\n");
		 int d;
		 scanf ("%d", &d);
		 switch (d) {
			 case 1:
				 if (i == 1) {
					  = 200;
					  = 50;
					  = 50;
				 } else {
					  = 200;
					  = 50;
					  = 50;
				 }
				 break;
			 case 2:
				 if (i == 1) {
					  = 150;
					  = 40;
					  = 80;
				 } else {
					  = 150;
					  = 40;
					  = 80;
				 }
				 break;
			 case 3:
				 if (i == 1) {
					  = 250;
					  = 40;
					  = 40;
				 } else {
					  = 250;
					  = 40;
					  = 40;
				 }
				 break;
			 case 4:
				 if (i == 1) {
					  = 130;
					  = 45;
					  = 85;
				 } else {
					  = 130;
					  = 45;
					  = 85;
				 }
				 break;
			 case 5:
				 if (i == 1) {
					  = 135;
					  = 65;
					  = 40;
				 } else {
					  = 135;
					  = 65;
					  = 40;
				 }
				 break;
		 }
		 system("cls");
	 }
 }

 int zhan() {
	 system("cls");
	 printf ("In combat...\n");
	 Sleep(2500);
	 int P1s = , P1g = , P1f = , P2s = , P2g = , P2f = ;
	 while (1) {
		 if (P2g - P1f > 0) {
			 P1s = P1s - (P2g - P1f);
		 }
		 if (P1g - P2f > 0) {
			 P2s = P2s - (P1g - P2f);
		 }

		 if ( <= && >= ) {
			 printf ("Cannot engage!\n");
			 Sl(1000);
			 a[p][q] = ' ';
			 p = 3, q ​​= 21;
			 a[p][q] = 'R';
			 a[x][y] = ' ';
			 x = 3, y = 1;
			 a[x][y] = 'H';
			 return 100;
		 }

		 if (P1s <= 0 && P2s > 0) {
			 printf ("H dog is brought!\n");
			 Sl(3000);
			 a[x][y] = ' ';
			 x = 3, y = 1;
			 a[x][y] = 'H';
		 }
		 if (P2s <= 0 && P1s > 0) {
			 printf ("R dog is brought!\n");
			 Sl(3000);
			 if (W1 || W2 || W3) {
				 a[p][q] = ' ';
				 p = 4, q = 17;
				 a[p][q] = 'R';
				 if (p == x && q == y) {
					 x = 3, y = 9;
					 a[x][y] = 'H';
				 }
				 return 99;
			 } else {
				 return 2;
			 }
		 }
		 if (P2s <= 0 && P1s <= 0) {
			 printf ("It's all taken!\n");
			 Sl(3000);
			 if (W1 || W2 || W3) {
				 a[x][y] = ' ';
				 x = 3, y = 1;
				 a[x][y] = 'H';
				 a[p][q] = ' ';
				 p = 4, q = 17;
				 a[p][q] = 'R';
				 if (p == x && q == y) {
					 a[x][y] = ' ';
					 x = 3, y = 9;
					 a[x][y] = 'H';
				 }
				 return 99;
			 } else {
				 return 2;
			 }
		 }
	 }
 }

 void win(int g) {
	 if (g == 1) {
		 printf("R wins!\n");
		 Sl(3000);
		 system("pause");
	 } else {
		 printf("H won!\n");
		 Sl(3000);
		 system("pause");
	 }
 }

 void rans(char cha) {
	 int f = rand() % 2;
	 a[sx][sy] = cha;
	 sx = 35, sy = 35;
	 switch (f) {
		 case 0:
			 sx = 5, sy = 1;
			 break;
		 case 1:
			 sx = 1, sy = 18;
			 break;
	 }
	 a[sx][sy] = 'S';
 }

 void rang(char cha) {
	 int ff = rand() % 3;
	 a[gx][gy] = cha;
	 gx = 35, gy = 35;
	 switch (ff) {
		 case 0:
			 gx = 2, gy = 15;
			 break;
		 case 1:
			 gx = 2, gy = 8;
			 break;
		 case 2:
			 gx = 4, gy = 10;
			 break;
	 }
	 a[gx][gy] = 'N';
 }

 void ranf(char cha) {
	 int ffff = rand() % 3;
	 a[fx][fy] = cha;
	 fx = 35, fy = 35;
	 switch (ffff) {
		 case 0:
			 fx = 2, fy = 10;
			 break;
		 case 1:
			 fx = 4, fy = 4;
			 break;
		 case 2:
			 fx = 4, fy = 8;
			 break;
	 }
	 a[fx][fy] = 'F';
 }

 void Start() {
	 puts("Welcome to play offensive and defensive battles!!!");
	 Sl(1000);
	 puts("Produced by yuxingfei, it must be a fine product!");
	 Sl(1000);
	 puts("Please press any key to start the game...");
	 getch();
	 cl;
	 puts ("Loading...");
	 Sl(2000);
	 cl;
	 int o = 0;
	 for (int i = 1; i <= 200; i++) {
		 printf ("%d files loaded, progress %d", i, o);
		 cout << "%\n";
		 if (i % 2 == 0) {
			 o++;
		 }
		 Sl(1);
		 if (rand() % 15 == 9) {
			 Sl(4);
		 }
		 cl;
	 }
 }

 void SetConsoleWindowSize( SHORT width, SHORT height ) {
	 HANDLE hStdOutput = GetStdHandle(STD_OUTPUT_HANDLE);
	 SMALL_RECT wrt = { 0, 0, width - 1, height - 1 };
	 SetConsoleWindowInfo(hStdOutput, TRUE, &wrt );
	 COORD coord = { width, height };
	 SetConsoleScreenBufferSize( hStdOutput, coordinate );
 }

 int main() {
	 system("title offensive and defensive battle");
	 SetFont(25);
	 SetConsoleWindowSize(53, 25);
	 srand(time(NULL));
	 system("color 0a");
	 Start();
	 cl;
	 printf ("Rules:\n1. Time limit (100s)\n2. The attacking party destroys the three beds of the defender within the specified time is considered to win\n3. The defending party must keep the three beds within the specified time, as long as there is still a bed that is not destroyed by the attacking party after the specified time is over, it is considered to win\n");
	 system("pause");
	 cl;
	 xuan();
	 HANDLE handle = GetStdHandle(STD_OUTPUT_HANDLE);
	 CONSOLE_CURSOR_INFO CursorInfo;
	 GetConsoleCursorInfo(handle, &CursorInfo);//Get the console cursor information
	  = false; //Hide console cursor
	 SetConsoleCursorInfo(handle, &CursorInfo);//Set the console cursor status
	 ttt = clock();
	 out();
	 ranf(' ');
	 rang(' ');
	 rans(' ');
	 w(1) {
		 if (GetAsyncKeyState('S')) {
			 if (a[x + 1][y] != 'O') {
				 a[x][y] = ' ';
				 x++;
				 a[x][y] = 'H';
			 }
		 }
		 if (GetAsyncKeyState('D')) {
			 if (a[x][y + 1] != 'O') {
				 a[x][y] = ' ';
				 y++;
				 a[x][y] = 'H';
			 }
		 }
		 if (GetAsyncKeyState('A')) {
			 if (a[x][y - 1] != 'O') {
				 a[x][y] = ' ';
				 y--;
				 a[x][y] = 'H';
			 }
		 }
		 if (GetAsyncKeyState('W')) {
			 if (a[x - 1][y] != 'O') {
				 a[x][y] = ' ';
				 x--;
				 a[x][y] = 'H';
			 }
		 }

		 if (GetAsyncKeyState('K')) {
			 if (a[p + 1][q] != 'O') {
				 a[p][q] = ' ';
				 p++;
				 a[p][q] = 'R';
			 }
		 }
		 if (GetAsyncKeyState('L')) {
			 if (a[p][q + 1] != 'O') {
				 a[p][q] = ' ';
				 q++;
				 a[p][q] = 'R';

			 }
		 }
		 if (GetAsyncKeyState('J')) {
			 if (a[p][q - 1] != 'O') {
				 a[p][q] = ' ';
				 q--;
				 a[p][q] = 'R';
			 }
		 }
		 if (GetAsyncKeyState('I')) {
			 if (a[p - 1][q] != 'O') {
				 a[p][q] = ' ';
				 p--;
				 a[p][q] = 'R';
			 }
		 }

		 if (clock() - ttt >= 100000) {
			 if (W1 || W2 || W3) {
				 win(2);
			 } else {
				 win(1);
			 }
			 break;
		 }

		 if (x == p && y == q) {
			 int jie = zhan();
			 if (jie == 2) {
				 win(2);
				 break;
			 }
		 }

		 if (x == n && y == m) {
			 W1 = false;
			 n = 48, m = 49;
		 }
		 if (x == c && y == b) {
			 W2 = false;
			 c = 48, b = 49;
		 }
		 if (x == f && y == j) {
			 W3 = false;
			 f = 48, j = 49;
		 }

		 if (p == n && q == m && W1) {
			 a[n][m] = 'R';
			 while (1) {
				 if (!(p == n && q == m))
					 a[n][m] = 'W';
				 break;
			 }
		 } else {
			 a[n][m] = 'W';
		 }

		 if (p == c && q == b && W2) {
			 a[c][b] = 'R';
			 while (1) {
				 if (!(p == c && q == b))
					 a[c][b] = 'W';
				 break;
			 }
		 } else {
			 a[c][b] = 'W';
		 }

		 if (p == f && q == j && W3) {
			 a[f][j] = 'R';
			 while (1) {
				 if (!(p == f && q == j))
					 a[f][j] = 'W';
				 break;
			 }
		 } else {
			 a[f][j] = 'W';
		 }

		 if (sx == x && sy == y) {
			  += 5;
			 Sleep(10);
			 rans('H');
		 }
		 if (sx == p && sy == q) {
			  += 5;
			 Sleep(10);
			 rans('R');
		 }

		 if (gx == x && gy == y) {
			  += 5;
			 rang('H');
		 }
		 if (gx == p && gy == q) {
			  += 5;
			 rang('R');
		 }

		 if (fx == x && fy == y) {
			  += 5;
			 ranf('H');
		 }
		 if (fx == p && fy == q) {
			  += 5;
			 ranf('R');
		 }

		 out();
	 }
	 return 0;
 }

Draw pictures

turtle version

#include <>
 #include <>
 #include <iostream>
 #include <>
 #define _cl system("cls")
 #define _pa system("pause")
 #define Get(x) GetAsyncKeyState(x)
 #define inf 1e9

 using namespace std;

 typedef long long ll;
 typedef string str;

 inline void Sleep_write(const string &x, const int &y = 10) {
	 for (int i = 0; i < (int)(); i++) {
		 putchar(x[i]);
		 ege::api_sleep(y);
	 }
 }

 inline void wait(const int &d = 100) {
	 ege::api_sleep(d);
	 getchar();
 }

 inline void welcome(void) {
	 Sleep_write("Drawing turtle version\n");
	 wait();
	 Sleep_write("Author: Yuexingfei_qwq\n");
	 wait();
	 Sleep_write("Copyright belongs to Yuexingfei_qwq, malicious transporters will be punished\n");
	 wait();
	 Sleep_write("Developer contact information (Luogu): /user/1125939, user name Yuexingfei_qwq||/user/1423517, user name Mengchen_Yxf2013_qwq (Yuexingfei_qwq trumpet)\n");
	 wait();
	 Sleep_write("Please use the English input method\n" when controlling turtle);
	 wait();
	 Sleep_write("If a bug occurs, press P key to relieve \n");
	 wait();
	 Sleep_write("Usage tutorials are available in the comments at the end of the code and the code, please check it yourself\n");
	 wait();
	 _pa;
	 _cl;
 }

 inline char get(str s) {
	 char ch[114514];
	 int l = 0;
	 for (auto i : s) {
		 ch[++l] = i;
	 }
	 while (true) {
		 str t;
		 cin >> t;
		 for (int i = 1; i <= l; i++) {
			 if (t[0] == ch[i]) {
				 return t[0];
			 }
		 }
		 Sleep_write("Error: Invalid input\n");
		 ege::api_sleep(1000);
		 _pa;
	 }
 }

 inline void init(void) {
	 char ch;
	 Sleep_write("Do you set the artboard size? (Y/N)\n");
	 ch = drager(get("YyNn"));
	 int n, m;
	 if (ch == 'y') {
		 Sleep_write("Please enter the length and width of the artboard\n");
		 cin >> n >> m;
	 } else {
		 n = 800, m = 600;
	 }
	 _cl;

	 Sleep_write("Do you set the initial coordinates of turtle? (Y/N)\n");
	 ch = drager(get("YyNn"));
	 int x = inf, y = -inf;
	 if (ch == 'y') {
		 Sleep_write("Please enter the initial coordinates of turtle\n");
		 cin >> x >> y;
	 }
	 _cl;

	 Sleep_write("Do you set the canvas title? (Y/N)\n");
	 ch = drager(get("YyNn"));
	 char s[1919810];
	 int f = 0;
	 if (ch == 'y') {
		 f = 1;
		 Sleep_write("Please enter the canvas title\n");
		 cin >> s;
	 }
	 _cl;
	 initWorld(n, m);
	 if (x != inf && y != -inf) {
		 setOrigin(x, y);
	 }
	 if (f) {
		 setCaption(s);
	 }
 }

 int fo = 10, an = 30, ps = 1;//fo: Steps an: Angle ps: Brush thickness
 int panc = 0, bakc = 15;//Pen color and background color
 int isjisu = 0, sudu = 100;//1 rapid 0 non

 inline void SetPen(void) {
	 if (panc == 0) {
		 setPenColor(ege::BLACK);
	 }
	 if (panc == 1) {
		 setPenColor(ege::BLUE);
	 }
	 if (panc == 2) {
		 setPenColor(ege::GREEN);
	 }
	 if (panc == 3) {
		 setPenColor(ege::CYAN);
	 }
	 if (panc == 4) {
		 setPenColor(ege::RED);
	 }
	 if (panc == 5) {
		 setPenColor(ege::MAGENTA);
	 }
	 if (panc == 6) {
		 setPenColor(ege::BROWN);
	 }
	 if (panc == 7) {
		 setPenColor(ege::LIGHTGRAY);
	 }
	 if (panc == 8) {
		 setPenColor(ege::DARKGRAY);
	 }
	 if (panc == 9) {
		 setPenColor(ege::LIGHTBLUE);
	 }
	 if (panc == 10) {
		 setPenColor(ege::LIGHTGREEN);
	 }
	 if (panc == 11) {
		 setPenColor(ege::LIGHTCYAN);
	 }
	 if (panc == 12) {
		 setPenColor(ege::LIGHTRED);
	 }
	 if (panc == 13) {
		 setPenColor(ege::LIGHTMAGENTA);
	 }
	 if (panc == 14) {
		 setPenColor(ege::YELLOW);
	 }
	 if (panc == 15) {
		 setPenColor(ege::WHITE);
	 }
 }

 inline void SetBack(void) {
	 if (bakc == 0) {
		 setBackgroundColor(ege::BLACK);
	 }
	 if (bakc == 1) {
		 setBackgroundColor(ege::BLUE);
	 }
	 if (bakc == 2) {
		 setBackgroundColor(ege::GREEN);
	 }
	 if (bakc == 3) {
		 setBackgroundColor(ege::CYAN);
	 }
	 if (bakc == 4) {
		 setBackgroundColor(ege::RED);
	 }
	 if (bakc == 5) {
		 setBackgroundColor(ege::MAGENTA);
	 }
	 if (bakc == 6) {
		 setBackgroundColor(ege::BROWN);
	 }
	 if (bakc == 7) {
		 setBackgroundColor(ege::LIGHTGRAY);
	 }
	 if (bakc == 8) {
		 setBackgroundColor(ege::DARKGRAY);
	 }
	 if (bakc == 9) {
		 setBackgroundColor(ege::LIGHTBLUE);
	 }
	 if (bakc == 10) {
		 setBackgroundColor(ege::LIGHTGREEN);
	 }
	 if (bakc == 11) {
		 setBackgroundColor(ege::LIGHTCYAN);
	 }
	 if (bakc == 12) {
		 setBackgroundColor(ege::LIGHTRED);
	 }
	 if (bakc == 13) {
		 setBackgroundColor(ege::LIGHTMAGENTA);
	 }
	 if (bakc == 14) {
		 setBackgroundColor(ege::YELLOW);
	 }
	 if (bakc == 15) {
		 setBackgroundColor(ege::WHITE);
	 }
 }

 signed main(void) {
	 welcome();
	 init();
	 while (ege::is_run()) {
		 if (Get('P')) {//debug
			 setImmediate(1);
			 lt(360);
			 setImmediate(0);
			 setSpeed(sudu);
		 }
		 if (Get('W')) {//Move forward
			 fd(fo);
		 }
		 if (Get('S')) {//Back
			 bk(fo);
		 }
		 if (Get('A')) {//Turn left
			 lt(an);
		 }
		 if (Get('D')) {//Turn right
			 rt(an);
		 }
		 if (Get('Q')) {//Put down
			 pd();
		 }
		 if (Get('E')) {//Pull the pen
			 pu();
		 }
		 if (Get('R')) {//Reset
			 clear();
		 }
		 if (Get('F')) {//Return to the starting point
			 home();
		 }
		 if (Get('Z')) {//Brush thickness +1
			 ps += 1;
			 setPenSize(ps);
		 }
		 if (Get('X')) {//Brush thickness-1
			 ps -= 1;
			 ps = std::max(1, ps);
			 setPenSize(ps);
		 }
		 if (Get('T')) {//Speed ​​+1
			 sudu += 1;
			 setSpeed(sudu);
		 }
		 if (Get('G')) {//Speed-1
			 sudu -= 1;
			 sudu = std::max(1, sudu);
			 setSpeed(sudu);
		 }
		 if (Get('V')) {//Hide
			 hide();
		 }
		 if (Get('Y')) {//Show
			 show();
		 }
		 if (Get('U')) {//Rotation angle +1
			 an += 1;
			 an = std::min(an, 360);
		 }
		 if (Get('J')) {//Rotation angle-1
			 an -= 1;
			 an = std::max(an, 0);
		 }
		 if (Get('N')) {//Step +1
			 fo += 10;
		 }
		 if (Get('M')) {//Step-1
			 fo -= 10;
			 fo = std::max(fo, 1);
		 }
		 if (Get('C')) {//Change the brush color to next
			 (panc += 1) %= 16;
			 SetPen();
		 }
		 if (Get('H')) {//Change the background color to next
			 (bakc += 1) %= 16;
			 SetBack();
		 }
		 if (Get('B')) {//Set if it is fast
			 isjisu = 1 - isjisu;
			 if (isjisu) {
				 setImmediate(isjisu);
			 } else {
				 setSpeed(sudu);
			 }
		 }
	 }
	 pause();
	 return 0;
 }
 /*
 Operation commands
 initWorld(int width, int height, double scale = 1.0): Generate canvas and set the canvas size (the third parameter is a magnification, and the first two parameters will be multiplied by it; the default is 1.0 if not filled in)
 setOrigin(int x, int y): Set the turtle start point
 setCaption(const char* title): Change the canvas title (the parameter is a string, and requires double quotes, not char)

 W: fd(double step): advance step
 S: bk(double step): step back
 A: lt(double step): turn left step°
 D: rt(double step): turn right step°
 Q: pd(): Delete the pen
 E: pu(): lift the pen
 R: clear(): reset
 F: home(): The turtle moves to the starting point
 Z+X-: setPenSize(int size): Set the brush thickness (default value is 1) (the slashes drawn when the parameters are large may be uneven) √
 C: setPenColor(ege::color_t color): Change the color of the brush
	 ege::BLACK: Black (default color)
	 ege::BLUE:Blue
	 ege::GREEN: Green
	 ege::CYAN: cyan
	 ege::RED:Red
	 ege::MAGENTA: Purple
	 ege::BROWN: Brown
	 ege::YELLOW: Yellow
	 ege::WHITE: White
	 ege::DARKGRAY: Dark gray
	 ege::LIGHTGRAY: Light gray
	 ege::LIGHTBLUE: Light blue
	 ege::LIGHTGREEN: Light green
	 ege::LIGHTCYAN: Light cyan (similar to sky blue or light blue)
	 ege::LIGHTRED: Light red
	 ege::LIGHTMAGENTA: Lilac (similar to pink)
	 Note: When passing parameters, the parameters should be "ege::" + the corresponding color in English, and the color in English must be in capitalized.
 T+G-: setSpeed(int speed): Adjust the speed (default 100)
 V: hide(): Hidden turtle
 Y: show(): Show turtle
 H: setBackgroundColor(ege::color_t color): Change the background color (see the setPenColor function for details)
 B: setImmediate(int isImmediate): Normal speed when the parameter is 0, otherwise it is super fast
 U+J-: Adjust the rotation angle of the turtle (default 30°)
 N+M-: Adjust the number of walking steps of the turtle (default 10 steps)

 pause(): Wait until the canvas is closed
 (Due to input and output, compatibility and other issues, only some operation instructions are in use)
 */

Character version

#include <bits/stdc++.h>
 #include <iostream>
 #include <>
 #include <>
 #include <cmath>
 #include <>
 #include <cstdlib>
 #include <cstdio>
 #include <>
 #include <algorithm>
 #include <>
 #include <string>
 #include <>
 #include <>

 using namespace std;

 int x = 1, y = 1;

 int pen = 1;
 string s[102][102];
 string color = "white";
 string ch = "@";
 string dfs_color = " ", dfs_ch = " ";

 bool f = 0, b[102][102], yd = 0;

 string a[102][102];

 int l, h;

 inline void color1(string g) {
	 if (g == "white") {
		 SetConsoleTextAttribute(GetStdHandle(STD_OUTPUT_HANDLE), FOREGROUND_INTENSITY | FOREGROUND_BLUE | FOREGROUND_RED | FOREGROUND_GREEN);
	 } else {
		 if (g == "red") {
			 SetConsoleTextAttribute(GetStdHandle(STD_OUTPUT_HANDLE), FOREGROUND_INTENSITY | FOREGROUND_RED);
		 } else {
			 if (g == "yellow") {
				 SetConsoleTextAttribute(GetStdHandle(STD_OUTPUT_HANDLE), FOREGROUND_INTENSITY | FOREGROUND_RED | FOREGROUND_GREEN);
			 } else {
				 if (g == "green") {
					 SetConsoleTextAttribute(GetStdHandle(STD_OUTPUT_HANDLE), FOREGROUND_INTENSITY | FOREGROUND_GREEN);
				 } else {
					 if (g == "indego") {
						 SetConsoleTextAttribute(GetStdHandle(STD_OUTPUT_HANDLE), FOREGROUND_INTENSITY | FOREGROUND_BLUE | FOREGROUND_GREEN);
					 } else {
						 if (g == "pink") {
							 SetConsoleTextAttribute(GetStdHandle(STD_OUTPUT_HANDLE), FOREGROUND_INTENSITY | FOREGROUND_BLUE | FOREGROUND_RED);
						 } else {
							 if (g == "blue") {
								 SetConsoleTextAttribute(GetStdHandle(STD_OUTPUT_HANDLE), FOREGROUND_INTENSITY | FOREGROUND_BLUE);
							 } else {
								 SetConsoleTextAttribute(GetStdHandle(STD_OUTPUT_HANDLE), FOREGROUND_INTENSITY);
							 }
						 }
					 }
				 }
			 }
		 }
	 }
 }

 inline void out() {
	 system("cls");
	 for (int i = 0; i < l; i++) {
		 for (int j = 0; j < h; j++) {
			 if (a[i][j] == "+") {
				 if (f == 1) {
					 color1(dfs_color);
					 printf ("%s", dfs_ch.c_str());
				 } else {
					 SetConsoleTextAttribute(GetStdHandle(STD_OUTPUT_HANDLE), FOREGROUND_INTENSITY | FOREGROUND_BLUE | FOREGROUND_RED | FOREGROUND_GREEN);
					 printf ("+");
				 }
			 } else {
				 color1(s[i][j]);
				 printf ("%s", a[i][j].c_str());
			 }
		 }
		 printf ("\n");
	 }
	 SetConsoleTextAttribute(GetStdHandle(STD_OUTPUT_HANDLE), FOREGROUND_INTENSITY | FOREGROUND_BLUE | FOREGROUND_RED | FOREGROUND_GREEN);
	 printf ("X:%d Y:%d\n", x, y);
 }

 inline void SetConsoleWindowSize(SHORT width, SHORT height) {
	 HANDLE hStdOutput = GetStdHandle(STD_OUTPUT_HANDLE);
	 SMALL_RECT wrt = {0, 0, width - 1, height - 1};
	 SetConsoleWindowInfo(hStdOutput, TRUE, &wrt);
	 COORD coord = {width, height};
	 SetConsoleScreenBufferSize(hStdOutput, coordinate);
 }

 inline void q() {
	 for (int i = 1; i < l - 1; i++) {
		 for (int j = 1; j < h - 1; j++) {
			 a[i][j] = " ";
		 }
	 }
	 a[x][y] = "+";
 }

 inline void init() {
	 for (int i = 0; i < l; i++) {
		 for (int j = 0; j < h; j++) {
			 b[i][j] = 0;
		 }
	 }
 }

 inline void dfs(const int &x, const int &y) {
	 b[x][y] = 1;
	 s[x][y] = color, a[x][y] = ch;
	 if (a[x - 1][y] == dfs_ch && s[x - 1][y] == dfs_color && !b[x - 1][y]) {
		 dfs(x - 1, y);
	 }
	 if (a[x + 1][y] == dfs_ch && s[x + 1][y] == dfs_color && !b[x + 1][y]) {
		 dfs(x + 1, y);
	 }
	 if (a[x][y - 1] == dfs_ch && s[x][y - 1] == dfs_color && !b[x][y - 1]) {
		 dfs(x, y - 1);
	 }
	 if (a[x][y + 1] == dfs_ch && s[x][y + 1] == dfs_color && !b[x][y + 1]) {
		 dfs(x, y + 1);
	 }
 }

 int main() {
	 cout << "Tutorial in comments at the end of the code\n";
	 system("pause");
	 system("cls");
	 h = 32, l = 12;
	 for (int i = 0; i < l; i++) {
		 for (int j = 0; j < h; j++) {
			 if (i == 0 || j == 0 || i == l - 1 || j == h - 1) {
				 a[i][j] = "O";
			 } else {
				 a[i][j] = " ";
			 }
			 s[i][j] = "white";
		 }
	 }
	 a[x][y] = "+";
	 CONSOLE_CURSOR_INFO cursorInfo;
	 GetConsoleCursorInfo(GetStdHandle(STD_OUTPUT_HANDLE), &cursorInfo);
	  = FALSE;
	 SetConsoleCursorInfo(GetStdHandle(STD_OUTPUT_HANDLE), &cursorInfo);
	 SetConsoleWindowSize(32, 14);
	 system("title drawing");
	 while (1) {
		 out();
		 if (GetAsyncKeyState('S')) {
			 if (a[x + 1][y] != "O" && !f) {
				 if (!yd) {
					 if (pen) {
						 a[x][y] = ch;
					 } else {
						 a[x][y] = " ";
					 }
					 s[x][y] = color;
				 }
				 if (yd) {
					 a[x][y] = dfs_ch;
					 s[x][y] = dfs_color;
				 }
				 dfs_ch = a[x + 1][y];
				 dfs_color = s[x + 1][y];
				 x++;
				 a[x][y] = "+";
			 }
		 }
		 if (GetAsyncKeyState('D')) {
			 if (a[x][y + 1] != "O" && !f) {
				 if (!yd) {
					 if (pen) {
						 a[x][y] = ch;
					 } else {
						 a[x][y] = " ";
					 }
					 s[x][y] = color;
				 }
				 if (yd) {
					 a[x][y] = dfs_ch;
					 s[x][y] = dfs_color;
				 }
				 dfs_ch = a[x][y + 1];
				 dfs_color = s[x][y + 1];
				 y++;
				 a[x][y] = "+";
			 }
		 }
		 if (GetAsyncKeyState('A')) {
			 if (a[x][y - 1] != "O" && !f) {
				 if (!yd) {
					 if (pen) {
						 a[x][y] = ch;
					 } else {
						 a[x][y] = " ";
					 }
					 s[x][y] = color;
				 }
				 if (yd) {
					 a[x][y] = dfs_ch;
					 s[x][y] = dfs_color;
				 }
				 dfs_ch = a[x][y - 1];
				 dfs_color = s[x][y - 1];
				 y--;
				 a[x][y] = "+";
			 }
		 }
		 if (GetAsyncKeyState('W')) {
			 if (a[x - 1][y] != "O" && !f) {
				 if (!yd) {
					 if (pen) {
						 a[x][y] = ch;
					 } else {
						 a[x][y] = " ";
					 }
					 s[x][y] = color;
				 }
				 if (yd) {
					 a[x][y] = dfs_ch;
					 s[x][y] = dfs_color;
				 }
				 dfs_ch = a[x - 1][y];
				 dfs_color = s[x - 1][y];
				 x--;
				 a[x][y] = "+";
			 }
		 }
		 if (GetAsyncKeyState('1')) {
			 pen = 1;
		 }
		 if (GetAsyncKeyState('2')) {
			 pen = 0;
		 }
		 if (GetAsyncKeyState('3')) {
			 color = "white";
		 }
		 if (GetAsyncKeyState('4')) {
			 color = "red";
		 }
		 if (GetAsyncKeyState('5')) {
			 color = "yellow";
		 }
		 if (GetAsyncKeyState('6')) {
			 color = "green";
		 }
		 if (GetAsyncKeyState('7')) {
			 color = "indego";
		 }
		 if (GetAsyncKeyState('8')) {
			 color = "pink";
		 }
		 if (GetAsyncKeyState('9')) {
			 color = "blue";
		 }
		 if (GetAsyncKeyState('0')) {
			 color = "grey";
		 }
		 if (GetAsyncKeyState('Y')) {
			 ch = "@";
		 }
		 if (GetAsyncKeyState('U')) {
			 ch = "#";
		 }
		 if (GetAsyncKeyState('I')) {
			 ch = "%";
		 }
		 if (GetAsyncKeyState('O')) {
			 ch = "^";
		 }
		 if (GetAsyncKeyState('P')) {
			 ch = "&";
		 }
		 if (GetAsyncKeyState('H')) {
			 ch = "*";
		 }
		 if (GetAsyncKeyState('J')) {
			 ch = "/";
		 }
		 if (GetAsyncKeyState('K')) {
			 ch = "-";
		 }
		 if (GetAsyncKeyState('L')) {
			 ch = ".";
		 }
		 if (GetAsyncKeyState('M')) {
			 q();
		 }
		 if (GetAsyncKeyState('N')) {
			 f = 1;
		 }
		 if (GetAsyncKeyState('B')) {
			 f = 0;
		 }
		 if (GetAsyncKeyState('Z')) {
			 for (int i = 0; i < l; i++) {
				 for (int j = 0; j < h; j++) {
					 if (a[i][j] != "O") {
						 s[i][j] = color, a[i][j] = ch;
					 }
				 }
			 }
			 dfs_ch = ch;
			 dfs_color = color;
			 a[x][y] = "+";
		 }
		 if (GetAsyncKeyState('X')) {
			 init();
			 dfs(x, y);
			 dfs_ch = ch;
			 dfs_color = color;
			 a[x][y] = "+";
		 }
		 if (GetAsyncKeyState('Q')) {
			 yd = 1;
		 }
		 if (GetAsyncKeyState('E')) {
			 yd = 0;
		 }
	 }
	 return 0;
 }
 /*
 The operation method is as follows: (Press the button on the keyboard to operate; O represents the edge, and when the brush moves, it cannot continue to move when it touches O; + represents the mouse)

 w: Move the mouse upward

 a: Move the mouse to the left

 s: Move the mouse down

 d: Move the mouse to the right

 1: Set the mouse to a brush

 2: Set the mouse to rubber

 3: The brush color is set to white

 4: The brush color is set to red

 5: Set the brush color to yellow

 6: The brush color is set to green

 7: The color of the brush is set to indigo

 8: Set the brush color to pink

 9: The brush color is set to blue

 0: The brush color is set to gray

 y: Draw the pattern and set it to @

 u: Draw the pattern and set it to #

 i: Draw the pattern and set it to %

 o: Draw the pattern and set it to ^

 p: Draw the pattern and set it to &

 h: Draw the pattern and set it to *

 j: Draw the pattern and set it to /

 k: Draw the pattern and set it to -

 l: Draw the pattern and set it to.

 m: Clear screen

 n: Turn on observer mode (see the end of the article)

 b: Turn off observer mode (see the end of the article)

 q:Pull pen

 e:Put down


 Special rules:

 1. At the beginning, the mouse defaults to the brush, and the pattern is @

 2. In brush mode, every time the mouse moves, the original grid is the drawn pattern.

 3. In rubber mode, every time the mouse moves, the original grid is spaced.

 Observer mode: In this mode, the mouse will not be displayed and cannot be moved, but the color, pattern, mouse mode, etc. can be changed.
 */