C语言贪吃蛇代码
- 分 类:行业软件
- 大 小:3.19 KB
- 适合系统:Win7/WinVista/Win2003/WinXP/Win2000/Win8/Win10兼容软件
- 系统位数:-
- 最新版本:
- 评 分:8
- 下载量:2次
- 发 布:2021-03-31
#简介
c语言编写贪吃蛇源代码,简单易懂,文件为VC源代码。如果你正在学习c语言,就来下载吧。C语言贪吃蛇代码部分include include includeincludedefine SX 50define SY 25define Length 10define Xnub 50define Ynub 40char BoxColor=3;ch...
#内容
c语言编写贪吃蛇源代码,简单易懂,文件为VC源代码。如果你正在学习c语言,就来下载吧。
C语言贪吃蛇代码部分
include
include
include
include
define SX 50
define SY 25
define Length 10
define Xnub 50
define Ynub 40
char BoxColor=3;
char BackColor=0;
char LineColor=4;
char key;
char i,j;
long int k=0;
char String[10];
char UpKey=72; /*按键设置*/
char ButtonKey=80;
char LeftKey=75;
char RightKey=77;
char StartX; /*蛇头位置*/
char StartY;
char StartC;
char EndX; /*蛇尾位置*/
char EndY;
char RandX=0; /*随机位置*/
char RandY=0;
char RandC=0;
int CurrtX;
int CurrtY;
char MoveFlag=3; /*蛇头移动方向1左 2上 3右 4下*/
C语言贪吃蛇代码部分
include
include
include
include
define SX 50
define SY 25
define Length 10
define Xnub 50
define Ynub 40
char BoxColor=3;
char BackColor=0;
char LineColor=4;
char key;
char i,j;
long int k=0;
char String[10];
char UpKey=72; /*按键设置*/
char ButtonKey=80;
char LeftKey=75;
char RightKey=77;
char StartX; /*蛇头位置*/
char StartY;
char StartC;
char EndX; /*蛇尾位置*/
char EndY;
char RandX=0; /*随机位置*/
char RandY=0;
char RandC=0;
int CurrtX;
int CurrtY;
char MoveFlag=3; /*蛇头移动方向1左 2上 3右 4下*/