用图行程序编写
我说的是用TC中的DOS图形编程谢谢大家的支持啊!
#include"stdio.h"
#include"graphics.h"
main()
{
int driver=VGA;
int mode=VGAHI;
int i;
initgraph(&driver,&mode," ");
setbkcolor(0);
setcolor(12);
arc(240,100,0,180,80);
arc(400,100,0,180,80);
ellipse(320,100,180,360,160,180);
for(i=0;i<=15;i++)
setlinestyle(3,0,1);
setfillstyle(0,i);
floodfill(240,80,12);
}
getch();
closegraph();
}
这是我写的,我不太满意!不知道还需要加点啥可以更好看!
相关分类