c++如何清屏?
答案:3 悬赏:40 手机版
解决时间 2021-04-06 05:25
- 提问者网友:niaiwoma
- 2021-04-05 09:10
c++如何清屏?
最佳答案
- 五星知识达人网友:不想翻身的咸鱼
- 2021-04-05 10:06
使用system("cls");
#include <stdio.h>
#include <stdlib.h>
int main()
{
printf ("clear me");
system("cls");
return 0;
}
#include <stdio.h>
#include <stdlib.h>
int main()
{
printf ("clear me");
system("cls");
return 0;
}
全部回答
- 1楼网友:玩家
- 2021-04-05 11:59
#include
system("cls");
或者循环一百次,循环体为printf("\n");
- 2楼网友:愁杀梦里人
- 2021-04-05 11:13
clrscr函数,尽量不要用system,因为system很慢
我要举报
如以上回答内容为低俗、色情、不良、暴力、侵权、涉及违法等信息,可以点下面链接进行举报!
点此我要举报以上问答信息
大家都在看
推荐资讯