📜  如何在 C++ 控制台中清除屏幕 - C++ 代码示例

📅  最后修改于: 2022-03-11 14:44:57.643000             🧑  作者: Mango

代码示例2
using the "system" function you enter a cmd command which is in this case "cls"

in code it well look something like this

    system("cls"); 

and it well clear your screen