• 大小: 101.15 KB
    文件类型: .zip
    金币: 1
    下载: 0 次
    发布日期: 2020-12-14
  • 语言: C/C++
  • 标签: 源代码  

资源简介

附带源码参考,已修正部分bug

资源截图

代码片段和文件信息

#include
#include
#include 
#include 
#include
#define SIDE 20//正方形区域边长 
#define SPEED 200//移动一格的时间 毫秒 
#define LEN 50//通关游戏长度 
void gotoxy(int xint y)
{
COORD coord={2*x+20y+5};
    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

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     文件        2497  2017-10-30 16:41  贪吃蛇.cpp
     文件      374497  2017-10-30 16:46  贪吃蛇.exe

评论

共有 条评论