[求助]关于作图的问题
#include<stdio.h>#include<graphics.h>
int main()
{
int graphdriver=DETECT;
int graphmode;
int i;
initgraph(&graphdriver,&graphmode,"");
cleardevice();
setactivepage(1);
setcolor(9);
setfillstyle(1,YELLOW);
circle(100,210,50);
floodfill(100,210,9);
setactivepage(0);
setfillstyle(1,LIGHTBLUE);
setcolor(8);
circle(200,180,50);
floodfill(200,180,8);
setvisualpage(1);
getch();
closegraph();
return 0;
}
在编辑第一页的时候只画了一个圆,为什么在后面显示时,出现了两个圆
如果我setactivepage(0);的上一行加上setvisualpage(1);getch();在这里显示时就不会出现两个圆?
说一下原因,不要帮我改代码