词条 | textcolor |
释义 | C语言函数textcolor函数名: textcolor 功 能: 在文本模式中选择新的字符颜色 用 法: void textcolor(int newcolor); 参数说明:其中参数newcolor为要设置的颜色,它的取值可以是下面的符号常量: BLACK BLUE GREEN CYAN RED MAGENTA BROWN LIGHTGRAY DARKGRAY LIGHTBLUE LIGHTGREEN LIGHTCYAN LIGHTRED LIGHTMAGENTA YELLOW WHITE 程序例1:(一个很经典的程序例程) #include <conio.h> int main(void) { int i, j; clrscr(); for (i=0; i<9; i++) { for (j=0; j<80; j++) cprintf("C"); cprintf("\\r\"); textcolor(i+1); } return 0; } 程序例2: #include <conio.h> int main(void) { int i; for (i=0; i<15; i++) { textcolor(i); cprintf("Foreground Color\\r\"); } return 0; } 在VC中的conio.h中无此函数。 pascal语言类型:uses crt程序例: program yanse; uses crt; begin textcolor(red); writeln('Baidu hao!!!'); end. //这个程序将输出红色的“Baidu hao!!! ” 扩展: program yanse; uses crt; begin textcolor(red); textbackground(green); writeln('Baidu hao!!!'); end. //这个程序将输出红色的“Baidu hao!!! ”,并配有绿色背景 |
随便看 |
百科全书收录4421916条中文百科知识,基本涵盖了大多数领域的百科知识,是一部内容开放、自由的电子版百科全书。