请教,运行画图程序后怎样从运行结果界面退回编辑界面啊?
我仿照别人的程序写了一个画图的程序,在写完运行,看到了运行结果,可是却不知道怎么样从这个运行结果页面退回到原来那个编辑界面???请各位帮帮忙啊!谢啦!
#include <graphics.h> main() {int driver,mode; driver=VGA;mode=VGAHI; initgraph(&driver,&mode,""); setbkcolor(YELLOW); setcolor(RED); circle(320,250,100); getch(); }
----------------解决方案--------------------------------------------------------
Turbo C提供了退出图形状态的函数closegraph(), 其调用格式为:
void far closegraph(void);
----------------解决方案--------------------------------------------------------