簡單的snake小遊戲

2021-07-26 12:05:59 字數 1466 閱讀 4809

# include

# include

# include

# include

/*conio.h不是c標準庫中的標頭檔案,在c standard library,iso c 和posix標準中均沒有定義。

conio是console input / output(控制台輸入輸出)的簡寫,其中定義了通過控制台進行資料輸

入和資料輸出的函式,主要是一些使用者通過按鍵盤產生的對應操作,比如getch()函式等等。*/

using

namespace

std;

const

int width = 28;

const

int height = 14;

int x, y, fruitx, fruity, score;

bool gameover;

enum edirection;

edirection dir;

int xtail[50], ytail[50];//蛇尾部(除去頭部)

int ntail = 0;

void setup();

void draw();

void input();

void logic();

int main()

cout

<< endl;

system("pause");

return0;}

void setup()

void draw()

}if (printblank)

cout

<< " ";

}if (j == width - 1)

cout

<< "#";

}cout

<< endl;

}for (int i = 0;i < width+2 ;i++)

cout

<< "#";

cout

<< endl << "score:"

<< score;

cout

<< endl << "食物座標:"

簡單掃雷小遊戲

game.h ifndef game h define game h include include include include define row 9 define col 9 define rows row 2 define cols col 2 define easy count 10 ...

canvas寫個簡單的小遊戲

之前在html5 canvas屬性和方法彙總一文中,介紹過canvas的各種屬性以及方法的說明,並列舉了自己寫的一些canvas demo,接下來開始寫乙個簡單的小遊戲吧,有多簡單,這麼說吧,不到100行,先上效果圖 初始化首先在html頁面中新增中新增乙個canvas元素,並給出乙個id用於在js...

簡單的猜數字小遊戲

簡單的猜數字小遊戲 要求如下 使用者輸入想猜測數字的範圍,輸入1000則是0 1000之內的數字,程式就會內建乙個 1 到 1000 之間的數字作 為猜測的結果,由使用者猜測此數字,使用者每猜測一次,由系統提示猜測結果 大了 小了或 者猜對了 直到使用者猜對結果,則提示遊戲結束。使用者可以提前退出遊...