0:默认值 1:高亮 、22:非粗体、4:下划线、24:非下划线、5:闪烁、25:非闪烁、7:反显、27:非反显 字体颜色 30: 黑 31: 红 32: 绿 33: 黄 34: 蓝 35: 紫 36: 深绿 37: 白色 背景颜色 40: 黑 41: 红 42: 绿 43: 黄 44: 蓝 45: 紫 46: 深绿 47: 白色 红色'm':表示转义序列的结束 结...
red,purple,yellow,white,gray,lightBlue,lightGreen,lightSimpleGreen,lightRed,lightPurple,lightYellow,brightWhite};voidsetColor(unsigned short textColor=0,unsigned short backColor=7){char command[9]="color 07";//默认颜色command[6]='0'+backColor;//将backColor变量改为字符型command[7]='0'+textColor...
C printf ANSI控制码之字体颜色、背景颜色 1#include <stdio.h>2#include <string.h>34#defineCOLOR_NONE "\033[0m"5#defineCOLOR_HIGHLIGHT "\033[1m"6#defineCOLOR_NON_BOLD "\033[22m"7#defineCOLOR_UNDERLINE "\033[4m"8#defineCOLOR_NON_UNDERLINE "\033[24m"9#defineCOLOR_FLICKER "\033[5m"10...
color(15); printf("亮白色\n"); color(16);//因为这里大于15,恢复默认的颜色printf("回到原来颜色\n");//直接使用颜色函数SetConsoleTextAttribute(GetStdHandle(STD_OUTPUT_HANDLE),FOREGROUND_RED|FOREGROUND_INTENSITY|BACKGROUND_GREEN|BACKGROUND_INTENSITY); printf("红色字体 前景加强 绿色背景 背景加强\n"...
所以,如果我们想单纯改变字体颜色,则使用第二个办法settextcolor函数,仅仅更改文字颜色,上代码: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 //www.dotcpp.com #include <graphics.h> // 引用图形库头文件 #include <conio.h> int main() { initgraph(640, 480); // 创建绘图窗口,大小为 640x480 ...
1 首先我们来打印一个hello world!会发现输出的字体是白色的。#include <stdio.h>int main(){printf("hello world!\n");} 2 接下来我们来设置一个函数来改变颜色,记得加头文件#include <windows.h>代码如下:#include <stdio.h>#include <windows.h>void color(int x) //设置字体颜色{if(x>=0 ...
改变字体颜色-c语言linux printf("\033[47;31mhello world\033[5m"); 47是字背景颜色, 31是字体的颜色, hello world是字符串.后面的\033[5m是控制码.颜色代码: QUOTE: 字背景颜色范围: 40--49字颜色: 30--39 40:黑30:黑 41:xx31:xx 42:绿32:绿 43:xx33:xx 44:xx34:xx 45:xx35:xx 46:...
1 更改字体颜色的代码为:SetConsoleTextAttribute(GetStdHandle(STD_OUTPUT_HANDLE),XXX);其包含在头文件windows.h中。2 其中XXX处有以下四种命令:FOREGROUND_RED 红色FOREGROUND_GREEN 绿色FOREGROUND_BLUE 蓝色FOREGROUND_INTENSITY 加亮(与以上三个一起使用)3 多个颜色指令前用“|”隔开,如:SetConsoleTextAttribute...
3 1-f分别代表的颜色如下:0 = 黑色8 = 灰色1 = 蓝色9 = 淡蓝色2 = 绿色A = 淡绿色3 = 湖蓝色B = 淡浅绿色4 = 红色C = 淡红色5 = 紫色D = 淡紫色6 = 黄色E = 淡黄色7 = 白色F = 亮白色 4 将背景设为白色,文字设为红色后的结果就是这样啦。2.更改属性法 1 在打开用c语言制作的...