天天达

贪吃蛇c语言源代码

 

    以下是两段C语言贪吃蛇游戏的源代码: 源代码一: ```c #include<stdio.h> #include<process.h> #include<windows.h> #include<conio.h> #include<time.h> #include<stdlib.h> #define WIDTH 40 #define HEIGH 12 enum direction{//方向 LEFT, RIGHT, UP, DOWN }; struct Food{//食物 int x; int y; }; struct Node{//画蛇身 int x; int y; struct Node *next; }; struct Snake{//蛇属性 int lenth;//长度 enum direction dir;//方向 }; struct Food *food; //食物 struct Snake *snake;//蛇属性 struct Node *snode,*tail;//蛇身 int SPEECH=200; int score=0;//分数 int smark=0;//吃食物标记 int times=0; int STOP=0; void Initfood();//产生食物 void Initsnake();//构造snake void Eatfood();//头部前进 void Addnode(int x, int y);//增加蛇身 void display(struct Node *shead);//显示蛇身坐标 void move();//蛇移动 void draw();//画蛇 void Homepage();//主页 void keybordhit();//监控键盘按键 void Addtail();//吃到食物 void gotoxy(int x, int y)//定位光标 { COORD pos; pos.X = x - 1; pos.Y = y - 1; SetConsoleCursorPosition(GetStdHandle(STD_OUTPUT_HANDLE),pos);