三九宝宝网宝宝教育教学论文

C语言问题:我希望程序运行后可以输入某个键实现cls清屏和执行到

01月06日 编辑 39baobao.com

#include

#include

#include

void main()

{

printf("输入ESC键清屏\r\n");

char ch=_getch();//VS2012用_getch(),VC6用getch()

if (ch==27)

{

system("cls");//system函数头文件stdlib.h

}

getchar();

}

推荐阅读
图文推荐