收藏大神的贪吃蛇代码,带给大家分享。

#include<stdio.h>//基本库 #include<stdlib.h>//系统库 #include<windows.h>//光标定位、字符颜色函数库 #include<time.h>//时间函数库 #include<conio.h>//键值读入函数库 #define width 60 #define height 25 struct ssnake { int f;//蛇身有效标志 int x; int y;//蛇身坐标 }; void color(int b) //颜色函数 { HANDLE...
2017-11-29 11:12 | 阅读 2058 次 | 评论 2 条
文章归档