#include <graphics.h>#include <bios.h>#include <stdlib.h>
#define ESC 0x011b#define UP 0x4800#define DOWN 0x5000#define LEFT 0x4b00#define RIGHT 0x4d00
struct Snake{int x,y;} snak[500];struct Food {int x,y;} food;int float_esc,float_up,float_down,float_left,float_right,float_eat=0;int sc...
/*key 80 下 72 上 77 右 75 左*/
#include <stdio.h>#include <stdlib.h>#include <conio.h>
int num[9];int setp=0;
start(){int i;int a,b;randomize();for(i=0;i<8;i++) num[i]=i+1;num[8]=0;for(i=0;i<100;i++) { a=random(8); b=(a+2)%8; chage(a,b); }game();}
chage(int a,int b){int temp=num[a];num[a]=num...