貪吃蛇小遊戲C語言實現

#include <stdio.h> #include <graphics.h> //圖形界面頭文件 #include <time.h> #include <conio.h> #define N 100  //蛇的最大節數 //座標 struct Coor {     int x;     int y; }; //枚舉方向,當一個變量有幾種可能的取值時,可以將它定義爲枚舉類型 變量的值只限於列舉出
相關文章
相關標籤/搜索