- #include<iostream>
- #include<cstdlib>
- using namespace std;
- int main()
- {
- cout<<"☆★☆智能玩具店☆★☆"<<endl<<endl;
- string commodity[8]={"新生兒",
- "大小便",
- "阿嬤丸",
- "發瘋藥水",
- "甲狀腺",
- "廁所清潔劑",
- "山寨包包LV",
- "結帳"};
- int price[7]={20,
- 3000,
- 500,
- 20,
- 600,
- 10,
- 8000,};
- cout<<"[商品價目表]"<<endl;
- for(int i=0; i<7; i++)
- {
- cout<<"("<<i+1<<")"<<commodity[i]<<"\t"<<price[i]<<"元"<<endl;
- }
- cout<<"(8)"<<commodity[7]<<endl;
- system("pause");
- return 0;
- }
複製代碼 |