[求助]C++程序中怎样设置文本颜色?
我想像C语言那样包含进去conio.h的头文件
用textmode(),textbacground()等函数改变屏幕的显示,
就想下面一段程序,在TC2.0环境下编译通过并正确执行,
但VC6.0中没有
textmode(C80);
textbackground(BLUE);
textcolor()
等函数啊?
难道C++就不能进行文本屏幕的编辑与设计吗?
/*C语言的程序:*/
#include <conio.h>
main()
{
int i;
textmode(C80);
textbackground(BLUE);
textcolor(7);
printf("%s", "prees any key to continue");
getch();
clrscr();
gotoxy(10,10);
cprintf("%s","welcome Your");
gotoxy(10,14);
cprintf("%s","Let's study Turbo C.");
gotoxy(17,10);
getch();
clreol();
gotoxy(17,14);
getch();
delline();
getch();
}