那请问一声,我如果想令全个窗口都变色,有什么办法?
void window(int left, int top, int right, int bottom);是tc的函数,原型在conio.h 中。用win-tc之类的编译环境编译才可运行设置好window()后,再调用textbackground();就可以改变window的颜色了。一段代码:#include<conio.h>main(){ textbackground(0); clrscr(); window(10,3,50,24); textbackground(2); clrscr(); getch();}