返回列表 發帖
  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main ()
  5. {
  6.   cout<<"∮∮∮愛心甜點店店∮∮∮"<<endl;
  7.   cout<<"~商品價目表~"<<endl;  
  8.   string n[5]={"卡布奇諾     ","濃郁黑咖啡   ","焦糖瑪奇朵   ","黑森林蛋糕   ","原味起司蛋糕 "};
  9.   int p[5]={160,210,125,95,65};
  10.   for(int i=0; i<=4; i++)
  11.   {
  12.           cout<<"("<<i+1<<")"<<"  "<<n[i]<<"   "<<p[i]<<endl;
  13.   }
  14.   system ("pause");   
  15.   return 0;
  16.    
  17. }
複製代碼

TOP

返回列表