c语言经典程序这一题怎么做
【程序32】 题目:Press any key to change color, do you want to try it. Please hurry up!
按他给的答案做了一遍
#include<iostream>
#include<stdlib.h>
using namespace std;
#include<conio.h>
int main()
{
int color;
for(color=0;color<8;color++)
{
textbackground(color);
cprintf("this is color %d\r\n",color);
cprintf("press any key to continue\r\n");
}
system("PAUSE");
return 0;
}
结果有错误 error C2065: 'textbackground' : undeclared identifier
我看这个例子也不知道textbackground它是什么,但是给的答案上就是这个。
谁能告诉我并把这个源码改下调试出来。
谢谢!