C语言怎么同时改变字体和背景颜色
#include <stdio.h>
#include <conio.h>
#include <stdlib.h>
void main()
{
system(" color Df ");
printf("Press any key :");
}#include <stdio.h>
#include <conio.h>
#include <stdlib.h>
void main()
{
system(" color D ");
printf("Press any key :");
}
第一个只能改变背景颜色,第二个只能改变字体颜色。我想即改变背景颜色又同时改变字体颜色。在VC++6.0怎么修改啊?#include <conio.h>
#include <stdlib.h>
void main()
{
system(" color Df ");
printf("Press any key :");
}#include <stdio.h>
#include <conio.h>
#include <stdlib.h>
void main()
{
system(" color D ");
printf("Press any key :");
}
[ 本帖最后由 宇智波曌 于 2011-9-25 01:39 编辑 ]