• 大小: 5.28KB
    文件类型: .cpp
    金币: 1
    下载: 0 次
    发布日期: 2021-01-29
  • 标签: 贪吃蛇  A0.1  

资源简介

c++ 贪吃蛇 A0.1 示例源码

资源截图

代码片段和文件信息

#include 
#include 
#include 
#include 
#include 

using namespace std;

int food[2] = { 9 9 };
int snake[1000][2];
int length = 1;
int headX headY;
int speed = 500;
int score = 0;
int level = 1;
string name;

void gotoxy(short x short y);
int setdirection(int x);
void changesnake(int x);
void ifchangefood();
void makefood();
bool judgelife();
void drawsnake();
void drawfood();
void drawwall();
void drawscore();
void draw();

int main()
{
    SetConsoletitle(“贪吃蛇游戏“);
    int po = 2;
    snake[0][0] = 7;
    snake[0][1] = 7;
    headX = snake[0][0];
    headY = snake[0][1];
    gotoxy(30 7);
    cout << “欢迎来到贪吃蛇游戏“;
    gotoxy(30 9);
    cout << “作者:陈伟豪 版本0.1“;
    gotoxy(30 11);
    system(“cls“);

评论

共有 条评论