当前位置: 代码迷 >> C语言 >> 可以改变输出字体颜色的程序
  详细解决方案

可以改变输出字体颜色的程序

热度:179   发布时间:2007-12-05 15:48:23.0
可以改变输出字体颜色的程序
#include <conio.h>
int main()
{int color; char p;
while(1)
{
for(color=0;color<8;color++)
{ p=getch();
if(p=='e') break;
else {
textbackground(color);
cprintf("This is color %d\r\n",color);
cprintf("Press any key to continue\r\n");
printf("'e' to exit");       }
}
if(p=='e') break;
}
return 0;
}
搜索更多相关的解决方案: 字体  颜色  输出  

----------------解决方案--------------------------------------------------------
  相关解决方案