gpt4 book ai didi

c - 如何清除 Code::blocks 中的输出屏幕?

转载 作者:行者123 更新时间:2023-12-02 07:09:00 25 4
gpt4 key购买 nike

在 Turbo C++ 中你可以这样做

#include<conio.h>
void main()
{
clrscr();
}

但是在代码块中我不能使用这个.. :(

最佳答案

您可以使用 system("cls");带有标题 #include <cstdlib> . “cls”是一个适用于 DOS/Windows 的批处理命令。在其他系统(基于 UNIX 的系统)上,您可能会使用:
cout << "\x1b[2J\x1b[1;1H" << flush;

永远不要,我再说一遍,永远不要使用“conio.h”。是一个已弃用的库,它不是标准的一部分,只有少数编译器拥有它。

关于c - 如何清除 Code::blocks 中的输出屏幕?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7938331/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com