C改变控制台文本颜色
Posted null-root
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了C改变控制台文本颜色相关的知识,希望对你有一定的参考价值。
#include<stdio.h>
#include<stdlib.h>
#include<windows.h>
enum Color
{
black,blue,green,lakeBlue,red,purple,yellow,white,gray,
lightBlue,lightGreen,lightSimpleGreen,lightRed,lightPurple,
lightYellow,brightWhite
};
void setColor(enum Color x)
{
if(x>=0 && x<=15)//参数在0-15的范围颜色
SetConsoleTextAttribute(GetStdHandle(STD_OUTPUT_HANDLE), x); //只有一个参数,改变字体颜色
else//默认的颜色白色
SetConsoleTextAttribute(GetStdHandle(STD_OUTPUT_HANDLE), 7);
}
void setTexColor(char * str,enum Color c){
setColor(c);
printf("%s
", str);
setColor(white);
}
int main(){
setTexColor("Text test..",green);
return 0;
}
以上是关于C改变控制台文本颜色的主要内容,如果未能解决你的问题,请参考以下文章
C/C++ 改变控制台输文字颜色:SetConsoleTextAttribute()