首页    新闻    小组    威客    人才    下载    博客    代码贴    在线编程    论坛
代码贴youxiaoxing的代码贴C语言
#include<stdio.h>
#include<windows.h>
#include<conio.h>
#define border 20
int X = 1, Y = 1, end_x = 1, end_y = 1, food_x = border*3, food_y = border*3;
int start=0, end=0; 
int score = 0;
struct snake{   
int x;
};
struct snake_body{    //用来记录整个蛇身体的 
int x;
......................
阅读全部 | 2019年1月27日 18:13
1
youxiaoxing