TC3.0,Win-tc2.0,图形显示问题
源程序如下:#include "graphics.h"
#include "conio.h"
main()
{
int x=260,y=160,driver=VGA,mode=VGAHI;
int num=20,i;
int top,bottom;
initgraph(&driver,&mode,"");
top=y-30;
bottom=y-30;
for(i=0;i<num;i++)
{
ellipse(x,250,0,360,top,bottom);
top-=5;
bottom+=5;
}
}
问题:
1,在TC3.0环境下,编译出错,提示:Undefine symbol _ellipse..
Undefine symbol _initgraph
2, 在WIN-TC 运行,屏幕一闪而过。加了getch();也是同样状况。
各位大侠,支支招啊,困扰一天了!
[ 本帖最后由 Devon_Ye 于 2010-1-15 08:39 编辑 ]