Board logo

標題: [作業] 購物系統 (一) [打印本頁]

作者: 陳品肇    時間: 2019-2-16 10:08     標題: [作業] 購物系統 (一)

運用陣列技巧, 設計一購物系統的商品價目表, 商店名稱與商品名稱請同學們發揮創意自由發揮
[attach]5935[/attach]
作者: 田宇任    時間: 2019-3-2 11:04

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     string s[]={"珍珠奶茶","茉莉綠茶","泡沫紅茶","菊花茶","多多綠茶","梅子可樂","檸檬愛玉"};
  7.     int m[]={50,35,20,30,35,25,45};
  8.     cout<<"☆★☆清薪飲料店☆★☆"<<endl<<endl;
  9.     cout<<"[商品價目表]"<<endl;
  10.     for(int i=0;i<7;i++)
  11.     {
  12.             cout<<"("<<i+1<<")"<<s[i]<<"\t"<<m[i]<<"元"<<endl;
  13.     }
  14.     system("pause");
  15.     return 0;   
  16. }
複製代碼

作者: 湯郡一    時間: 2019-3-2 11:07

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     string x []={"菠蘿麵包   ","小餐包(六入)  ","巧克力熱壓吐司","紅豆麵包   ","桂圓麵包   ","培根玉米三明治","北歐圓法(四入)"};
  7.     int y []={35,50,45,30,55,65,45};
  8.     cout<<"左營可口麵包店"<<endl<<endl;
  9.     cout<<"{麵包價目表]"<<endl;
  10.      for(int i=0;i<7;i++)
  11.     {
  12.         cout<<"("<<i+1<<")"<<x[i]<<"\t"<<y[i]<<"元"<<endl;
  13.     }
  14.     system("pause");
  15.     return 0;            
  16. }
複製代碼

作者: 蘇昱全    時間: 2019-3-2 11:14

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {

  6.     string name[]={"齊爾 爆焰龍捲","卡莉 聖域福音","悟空 合金進化","夜叉 戰地之王","瑟斐斯 煉獄修羅","甲蟲 荒漠邪翅","馬洛斯 鋼鐵戰線"};
  7.     int price[]={450,550,325,200,660,150,150,380};
  8.     cout<<"☆★☆傳說對決造型專賣店☆★☆"<<endl<<endl;
  9.     cout<<"[商品價目表]"<<endl;
  10.     for(int i=0;i<7;i++)
  11.     {
  12.     cout<<"("<<i+1<<")"<<name[i]<<"\t"<<price[i]<<"元"<<endl;
  13.     }
  14.     system("pause");
  15.     return 0;
  16. }
複製代碼





歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/) Powered by Discuz! 7.2