VC printf输出彩色字体

在VC下使用SetConsoleTextAttribute()函数可以改变当前控制台的前景色和背景色,从而达到输出彩色字体的效果。

使用的方法也很简单,具体代码如下:

  1. #include <windows.h>
  2. #include <winnt.h>
  3. #include <stdio.h>
  4. int main(int argc, char* argv[])
  5. {
  6. HANDLE hConsoleWnd;
  7. hConsoleWnd = GetStdHandle(STD_OUTPUT_HANDLE);
  8. SetConsoleTextAttribute(hConsoleWnd,FOREGROUND_RED);
  9. printf("I am red now!\n");
  10. SetConsoleTextAttribute(hConsoleWnd,FOREGROUND_INTENSITY);
  11. printf("I am gray now!\n");
  12. return 0;
  13. }
上一篇:6.编写一个Java应用程序,该应用程序包括2个类:Print类和主类E。Print 类里有一个方法output()功能是输出100 ~ 999之间的所有水仙花数(各位数字的 立方和等于这个三位数本身,如: 371 = 33 + 73 + 13。)在主类E的main方法中来 测试类Print。


下一篇:pip install psycopg2出现python setup.py egg_info failed with error code 1 in /tmp/pip-build-YtLeN3/psycopg2错误处理