如何搜索数组中的元素并打印它的整行?我一直在做这样的解决方法,但似乎无法输出我所期望的。
#include <iostream>
#include <stdlib.h>
#include <string>
#include <ctype.h>
#include <sstream>
using namespace std;
int main() {
string items[9][3] = {{"A","BALOT","25.00"},
{"B","CANTON","20.00"},
{"C","NIDO","100.00"},
{"D","KETCHUP","50.00"},
{"E","MAGGI","15.00"},
{"F","ALASKA","60.00"},
{"G","VINEGAR","25.00"},
{"H","OIL","70.00"},
{"I","COKE","10.00"}};
// PARA SA MAPRINT YUNG ARRAY.
cout << "MANG JUAN'S 10-DAHAN\n\n";
for (int i = 0; i < 9; i++) {
for (int j = 0; j < 3; j++)
cout << items[i][j] << ( (j < 2) ? "-" : "\t" );
if (i < 6) {
cout << "\t";
i += 2;
}
else if (i != 8) {
cout << "\n";
i -= 6;
}
} // END OF ARRAY PRINTING
char choice;
int ctr = 1, quantity;
string purchased;
cout << "\n\nWOULD YOU LIKE TO PURCHASE? Y/N\n\n";
cin >> choice;
if(choice == 'n' || choice == 'N') {
cout << "Thank you. ";
}
else if(choice == 'y' || choice == 'Y') {
string numPref;
while (true) {
if(ctr > 11) {
cout << "\n\nTHE SYSTEM EXCEEDED ITS LIMIT\n\n";
break;
} else {
if(ctr == 1) numPref = "st";
else if(ctr == 2) numPref = "nd";
else if(ctr == 3) numPref = "rd";
else if(ctr > 3) numPref = "th";
}
cout << "\n\nPLEASE ENTER " << ctr << numPref << " ITEM:\t";
cin >> purchased;
if(!cin) {
cout << "Letters only";
break;
} else {
if(true) {
cout << "HOW MANY? ";
cin >> quantity;
if(!cin) {
cout << "Enter number only. ";
break;
} else {
cout << "PRICE PER ITEM: ";
///////// Look for the element and print the entire row /////////////
string matchedRow[3];
for (int i = 0; i < 3; i++) {
string oneRow[] = items[i];
if (oneRow[0] == purchased) {
matchedRow = oneRow;
break;
}
}
for (int i = 0; i < matchedRow.length; i++) {
cout << matchedRow[i] + "\t\t";
}
////////////////////////////////////////////
}
ctr++;
} // end of else - if (!cin) for quantity input check
} // end of char check
} // End of else for (!cin)
} // End of while loop for numPref
} // End of else if (choice)
system("PAUSE");
return 0;
}
示例:如果用户输入A
,Please enter item
程序将Price per item
在数组中输出和相应的价格。
Sample Run:
lease enter item: A // user input
How many? 3 // user input
Price per item: 25.00 // not user input