C/C++ 修改控制台程序文字颜色
可以修改前景色(字体颜色)和背景色。
示例代码如下:
#include <iostream> #include <Windows.h> //需要引用Windows.h using namespace std; int _tmain(int argc, _TCHAR* argv[]) { HANDLE hConsole; hConsole = GetStdHandle(STD_OUTPUT_HANDLE); for(int i=255;i>=0;i--) { SetConsoleTextAttribute(hConsole, i); cout<<"what color is this?"<<endl; } cin.get(); return 0; }
效果如图所示:
郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。