- #include <iostream>
- using namespace std;
- int main()
- {
- string name[]={"R/C Car", "Model Plane", "Football", "Tennis Ball","Toy Gun","Basketball"};
- int price[]={400,690,678,560,570,300};
- cout<<"*****Da Epic Toy Store*****"<<endl<<endl;
- cout<<"[Products]"<<endl;
-
- for(int i=0;i<=5;i++)
- {
- cout<<"("<<i+1<<")"<<name[i]<<"\t"<<"$"<<price[i]<<endl;
- }
-
- system("pause");
- return 0;
- }
複製代碼 |