#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