system("CLS") 是在C语言程序中,调用系统命令cls完成清屏操作。system函数是C语言提供的与操作系统衔接的函数,函数原型如下: #include //所在头文件 int system(const char *command); //参数为操作系统命令函数功能:execute a shell command 执行一个操作系统命令如:system("time /t") ;显示时间system("dir"); //列目录