1
我目前正在關注由youbube上的newboston創建的教程。我並不是一字不差,但足夠接近。system()函數不工作C++
我簡單的程序:
#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()函數工作。
輸出:
所有除#include <iostream>
來自其他計算器職位的建議,試圖得到這個工作。沒有工作。如果有問題,我正在使用G ++進行編譯。
就C++而言,「系統」不保證任何結果。你沒有'cls'命令(Windows默認是這樣的,這就是本教程的用途)。 – chris
使用'system(「cmd/c cls」);' –
@CaptainObvlious,不是Windows,通過''判斷。 –
chris