EasyX开发的贪吃蛇简单版,还有很多bug没改
#include #include #include #include#define length_side 10struct point { int x; int y;}; struct snake { point p; snake *next;}; //蛇的结构体,左上角的坐标,以及下一个节点的未知snake *head = NULL; //蛇头