You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
/*****控制文字颜色*******/
|
|
int color(int c){
|
|
SetConsoleTextAttribute(GetStdHandle(STD_OUTPUT_HANDLE),c); //只在windows上改变文字颜色
|
|
return 0;
|
|
}
|