资源简介
用C语言写的贪吃蛇代码
代码片段和文件信息
#include
#include
#include
#include
#include
#define SIDE 20//正方形区域边长
#define SPEED 301//移动一格的时间 毫秒
#define LEN 50//通关游戏长度
void gotoxy(int xint y)
{
COORD coord={2*x+30y+10};
SetConsoleCursorPosition(GetStdHandle(STD_OUTPUT_HANDLE)coord);
}//光标移动
void setcolor(int foreint ground)
{
HANDLE handle=GetStdHandle(STD_OUTPUT_HANDLE);
SetConsoleTextAttribute(handle(fore%16)|(ground%16*16));
} //背景文本颜色
void cube(int xint y)
{
gotoxy(xy);
printf(“■“);
}//打印方块
void clear(int xint y)
{
gotoxy(xy);
printf(“ “);
}//消除方块
void boards(int x)
{
int i;
cube(-1-1);
for(i=0;i<=x;i++)
{
cube(-1i);
cube(i-1);
cube(xi);
cube(ix);
}
}//打印边界
void headmove(int *xint *y
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
目录 0 2016-12-07 09:51 贪吃蛇\
文件 2582 2016-12-07 09:51 贪吃蛇\主函数.cpp
文件 374662 2016-12-07 09:51 贪吃蛇\主函数.exe
- 上一篇:数据结构 C++ 语言描述
- 下一篇:华为技术有限公司c语言编程规范
评论
共有 条评论