解决方法
我知道这在C中是非常容易做到的,但是我发现这个可以在C中看到:
#include <stdio.h> #include <windows.h> // WinApi header int main() { HANDLE hConsole; int k; hConsole = GetStdHandle(STD_OUTPUT_HANDLE); // you can loop k higher to see more color choices for(k = 1; k < 255; k++) { SetConsoleTextAttribute(hConsole,k); printf("%3d %s\n",k,"I want to be nice today!"); } getchar(); // wait return 0; }