返回列表 發帖
本帖最後由 沈子耕 於 2015-9-18 21:39 編輯
  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main(){
  5.     string tag[9]={"俠盜列車手5    ","決勝時刻:黑色行動3","虹彩六號:圍突行動 ",
  6.                    "minecraft    ","星際大戰:戰場前線 ","正當防衛3     ",
  7.                    "湯姆克蘭西:末日邊界","潛龍諜影:幻痛   "};
  8.     int price[8]={2250,2250,1790,990,2500,1900,1500,2200};
  9.     cout<<"\t※※※子耕電玩專賣店※※※"<<endl<<"本店商品保證便宜^_^"<<endl<<endl;
  10.     cout<<"[商品一覽表]"<<endl;
  11.     for(int i=0; i<8; i++){
  12.        cout<<"<"<<i+1<<">"<<tag[i]<<"\t\t"<<price[i]<<"元"<<endl;   
  13.     }
  14.     cout<<"<9>結帳去"<<"\t\t"<<endl<<endl;
  15.     cout<<"[優惠方案]\t本店滿5000元及立刻打九折"<<endl;
  16.                   
  17.                   
  18.                   
  19.     system("pause");   
  20.     return 0;
  21. }
複製代碼
ABCDEFGHIJKLMNOPQRSTUVWXYZ

TOP

返回列表