此程序有什么作用?用在哪里?
/*题目:Press any key to change color, do you want to try it. Please hurry up!
*/
#include<stdio.h>
#include<conio.h>
int main()
{
int color;
for(color=0;color<8;color++)
{
textbackground(color); //设置文本的背景颜色
cprintf("This is color %d\r\n",color); //\r
cprintf("Press any key to continue\r\n");
getch(); //输入字符看不见
}
}
代码是抄的,好像还缺少一些东西,不知道可以用来干嘛!欢迎大家发表看法,期待各位的回复! 虽然没看出来是什么语言,貌似是c,不过大意应该是按一次键变一次颜色的意思 wegoo8 发表于 2016-10-20 19:51
虽然没看出来是什么语言,貌似是c,不过大意应该是按一次键变一次颜色的意思
不知道可以用来做什么?有实际的应用例子吗? /*
题目:Press any key to change color, do you want to try it. Please hurry up!
*/
#include<stdio.h>
#include<conio.h>
int main()
{
int color;
for(color=0;color<8;color++)
{
textbackground(color); //设置文本的背景颜色
cprintf("This is color %d\r\n",color); //\r
cprintf("Press any key to continue\r\n");
getch(); //输入字符看不见
}
}
@FishC_GPT 这段代码有什么作用
页:
[1]