贪吃蛇

#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...
默认分类 | 2008-08-28 12:46 | 阅读 3801 次 | 评论 5 条

九方格游戏

/*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...
默认分类 | 2008-08-25 17:53 | 阅读 8929 次 | 评论 0 条
浏览35724次
文章分类