俄罗斯的问题??
#include <graphics.h>#include <stdlib.h>
#include <stdio.h>
#include <bios.h>
#include <dos.h>
#define SPACE 0x3920
#define UP 0x4800
#define DOWN 0x5000
#define LEFT 0x4b00
#define RIGHT 0x4d00
#define ESC 0x011b
#define WIDTH 12 /**/
#define HIGH 22 /**/
#ifndef CLOCKS_PER_SEC
#define CLOCKS_PER_SEC 18
#endif
int x=230,y=40;
struct block
{
int a[4][2];
int color;
}box[]={
{1,0,1,0,1,0,1,0,2},
{1,1,0,1,0,1,0,0,6},
{1,1,1,0,1,0,0,0,7},
{0,1,1,1,0,1,0,0,9}
};
showbox(int n)
{
int i,j;
setcolor(8);
setfillstyle(1,box[n].color);
for(i=0;i<4;i++)
for(j=0;j<2;j++)
{
if(box[n].a[i][j]==1)
{rectangle(x+i*20,y+j*20,x+i*20+20,y+j*20+20);
floodfill(x+i*20+10,y+j*20+10,8);}
}
}
clearbox()
{
int i,j;
setcolor(14);
setfillstyle(1,14);
for(i=0;i<4;i++)
for(j=0;j<4;j++)
{rectangle(x+i*20,y+j*20,x+i*20+20,y+j*20+20);
floodfill(x+i*20+10,y+j*20+10,14);}
}
initgame()
{
int gdriver=DETECT,gmode;
registerbgidriver(EGAVGA_driver);
initgraph(&gdriver,&gmode,"");
cleardevice();
}
showgame()
{
int i,j;
setcolor(9);
setfillstyle(1,14);
rectangle(200,40,400,440);
floodfill(210,41,9);
moveto(100,40);
outtext("vs by xufan");
rectangle(98,38,190,60);
}
main()
{ int n;
int key;
initgame();
showgame();
n=rand()%4;
showbox(n);
while(!kbhit())
{key=bioskey(0);
if(key==ESC)
return 0;
if(key==DOWN)
{clearbox();y+=20;showbox(n);}
}
}
这个是我的代码 我的意思是 界面上一个方块由我键盘控制下降 没有变形 不自已下落,也就是说它是静止的方块降到我和界面底后 我想再出来一个方块 我用 if(y>=440) goto loop; 可是不行 不是运行不了 是我一按下键 就退出了 这个要怎么解决啊 ??
也可以用你们自己的方法,总之是实现方块的再现 就OK