返回列表 發帖
  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.   cout<<"***Legend's Sports Store***"<<endl;
  7.   cout<<"The Price LIST"<<endl;
  8.   string name[7]={"Rose4               ",
  9.                  "NIKE Ambassader",
  10.                  "JORDAN FLIGHT",
  11.                  "ADIfast       ",
  12.                  "adizero crazy light",
  13.                  "NIKE hyperdunk 2013",
  14.                  "ADIZERO CRAZY QUICK"};
  15.   int price[7]={4500,
  16.                 3950,
  17.                 2400,
  18.                 2780,
  19.                 2950,
  20.                 2495,
  21.                 2154};
  22.     for(int i=0;i<=6;i++)
  23.     {
  24.     cout<<"("<<i+1<<")"<<name[i]<<"\t"<<price[i]<<"元"<<endl;        
  25.     }                          
  26. system("pause");
  27. return 0;      
  28. }
複製代碼

TOP

返回列表