1. 首页
  2. 课程学习
  3. C++/C
  4. 贪吃蛇控制台程序

贪吃蛇控制台程序

上传者: 2019-01-06 08:45:27上传 CPP文件 2.9KB 热度 18次
开头n行代码: #include #include #include #include #include using namespace std; struct she //用x,y记录蛇的坐标 { int x; int y; struct she *next; }*tou,*wei; //分别指向表示蛇头,蛇尾的节点 enum fangxiang //方向 {shang='w',xia='s',zuo='a',you='d'}; int changdu=5;//蛇的
用户评论