#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();
}
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();
}