gpt4 book ai didi

c++ - system() 函数不工作 C++

转载 作者:行者123 更新时间:2023-11-30 02:49:37 25 4
gpt4 key购买 nike

我目前正在关注由 thenewboston 在 youtube 上创建的教程。我没有逐字逐句地遵循它,但已经足够接近了。

我的简单程序:

#include <iostream>
#include <string.h> /* memset */
#include <unistd.h> /* close */
#include <stdio.h>
#include <stdlib.h>
#include <cstdlib>

int main(){
using namespace std;
cout << "Those who wander too far off the path of reality. Will be plunged into total Madness." << endl;
cout << " - BinKill-Ethical" << endl;
system("cls");
return 0;

}

这是我用 C++ 创建的第一个程序。我几乎一无所知,但我无法让 system() 函数正常工作。

输出:enter image description here

#include <iostream> 以外的所有是来自其他 stackoverflow 帖子的建议,以尝试使它正常工作。没有一个有效。如果重要的话,我正在使用 G++ 进行编译。

最佳答案

如果您使用的是 Linux,则可以改用以下命令:

system("clear");

假设你想在打印前清屏,你的代码会变成这样:

#include <iostream>
#include <string.h> /* memset */
#include <unistd.h> /* close */
#include <stdio.h>
#include <stdlib.h>
#include <cstdlib>

int main(){
using namespace std;
system("clear");
cout << "Those who wander too far off the path of reality. Will be plunged into total Madness." << endl;
cout << " - BinKill-Ethical" << endl;
return 0;

}

关于c++ - system() 函数不工作 C++,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21105171/

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