今天说一下,在用C语言实现颜色控制。(其实,是对Linux终端的颜色控制)其实,很简单,就是输出字符串来控制的。
。
下载 (7.94 KB)
2010-8-27 00:13
大家可以试着运行下面的代码(Linux运行)也可以到我的博客园看看我写的 一个汉诺塔程序,里面有很多的颜色控制和格式控制。今天回来的晚了,就写这点了。如果有兴趣可以用“Linux bash 颜色控制”来Google一下。
C语言实现Bash颜色控制
1 #include <curses.h>
2 void textbackground(int color);
3 int main()
4 {
5 int color ;
6 for(color = 0;color<8;color++)
7 {
8 textbackground(color);
9 }
10 printf("Well Done\n");
11 }
12
13 void textbackground(int color )
14 {
15 printf("\033[4%dm%s\033[0m\n",color,"JessonChan");
16 }