当前位置: 代码迷 >> C语言 >> 程序问题
  详细解决方案

程序问题

热度:206   发布时间:2008-04-04 21:51:45.0
程序问题
以下程序可以实现动画.但我执行后只有结果而没有动画过程~请问原因何在???

#include<conio.h>
#include<stdio.h>
#include<graphics.h>
#include<dos.h>
void main()
{
int i,j,x,y;
char a[8];
int gd=DETECT,gm;
initgraph(&gd,&gm,"c:\\turboc2");
setbkcolor(3);
setcolor(5);
sprintf(a,"HELLO!!");
for(i=0;i<11;i++)
{
x=500,y=50;
for(j=1;j<11;j++)
{cleardevice();
x-=15;
y+=15;
settextstyle(i,0,j);
settextjustify(1,1);
outtextxy(x,y,a);
delay(200);
}
}
getch();
closegraph();
}
搜索更多相关的解决方案: include  动画  int  void  

----------------解决方案--------------------------------------------------------
  相关解决方案