我想製作一個包含2個字符串列表(一個單數和一個複數)的數組數組。C++陣列,分別定義部分
string item_name[2][6];
string item_name[0] = {"bag of CinnaCandies", "can of Arizona Tea", "Starbucks Mocha Frappe", "copy of Section 8: Prejudice", "Sushi Box", "pair of Nike Jordans"};
string item_name[1] = {"bags of CinnaCandies", "cans of Arizona Tea", "Starbucks Mocha Frappes", "copies of Section 8: Prejudice", "Sushi Boxes", "pairs of Nike Jordans"};
我不知道正確的語法來做到這一點,我想保持它作爲2數組的數組,所以我可以有代碼,說:
if (quantity > 1)
{
cout << item_name[0][index];
}
else
{
cout << item_name[1][index];
}
感謝。 :)
謝謝。我看過載體,但不知道它們是什麼。我現在要去研究它們。 – vertevero 2011-05-13 15:50:32