#include <iostream>
#include <Windows.h>
#include <string>
using namespace std;
int main(){
string Whitelist[4] = {"Stian", "Mathias", "Modaser"};
for (int x = 0; x < 3; x++){
cout << x + 1<< ". " << Whitelist[x] << endl;
if (Whitelist[x] == "Stian" && "Mathias" && "Modaser"){
cout << "" << Whitelist[x] << " is here" << endl;
}
else{ cout << "no one is here" << endl; }
}
cin.get();
return 0;
}
//所以耶基本上我只是試圖循環通過我的數組,看看有沒有這些名稱。所以我猜你幾乎可以閱讀代碼所做的事情,因爲你大部分都是優點:P。但是當我問我的朋友,誰已經編了1-2年的編碼時,他說我不能像這樣循環數組,並告訴我使用矢量。他是什麼意思?和我的代碼的作品?這是循環訪問數組的正確方法嗎?
'Whitelist [x] ==「Stian」&&「Mathias」&&「Modaser」'不會做你認爲它的作用。 – Biffen
他們的意思是你應該使用'std :: vector Whitelist = {「Stian」,「Mathias」,「Modaser」};'。聽他們說。 –
好的,但你可以向我解釋它是什麼,我很新的編程:P – manplox0