[求助]这个题目有问题吗
字符的显示及缩放#include "graphics.h"
#define DELAY_TIME 10000
main()
{int i,start,color,font;
int graphdriver=DETECT,graphmode;
initgraph(&graphdriver,&graphmode,"");
color=0;
font=-1;
while(!bioskey(0))
{start=0;
font=(font==4)?0:++font;
color=(color==15)?0:++color;
for(i=1;i<=6;i++)
{delay(DELAY_TIME);
start=start+16*i;
settextstyle(font,HORIZ_DIR,i);
setcolor(color);
outtextxy(start,start,"NJIT");
delay(DELAY_TIME);
setcolor(BLACK);
outtextxy(start,start,"NJIT");
}
}
closegraph();
}
这个题目能编译也能链接 就是运行时屏蔽上没有什么?
这是为什么啊