彩虹贪吃蛇1.exe

时间:2022-12-04 11:59:08
【文件属性】:

文件名称:彩虹贪吃蛇1.exe

文件大小:133KB

文件格式:EXE

更新时间:2022-12-04 11:59:08

会变色的贪吃蛇

#include #include #include #include #include #ifndef cplusplus typedef char bool; #define up 'w' #define down 's' #define left 'a' #define right 'd' #define false 0 #define true 1 #endif void gotoxy(int x,int y) { COORD coord; coord.X=x; coord.Y=y; SetConsoleCursorPosition (GetStdHandle(STD_OUTPUT_HANDLE),coord); } #define SNAKESIZE 100 #define MAPWIDTH 78 #define MAPHEIGHT 24 struct { int x; int y; }food; struct {int speed; int len; int x[SNA


网友评论