在C語言中,可以使用標準庫函數system("cls")
來實現刷新屏幕的功能。system("cls")
會調用系統的命令行來執行cls
命令,從而清空屏幕上的內容。
以下是一個示例代碼:
#include <stdio.h>
#include <stdlib.h>
int main() {
printf("Hello, world!\n");
printf("Press any key to clear the screen.\n");
getchar(); // 等待用戶按下任意鍵
system("cls"); // 清空屏幕
printf("Screen cleared!\n");
return 0;
}
當用戶按下任意鍵后,屏幕上的內容會被清空,然后打印"Screen cleared!"。