1、使用清屏语句:sysytem("cls");注:尽量需要导入 stdlib.h 头文件。2、使用多行换行实现伪清屏:int i;for (i=0; i<20; i++){ printf("\n");}