返回列表 發帖
我是第二名嗎??
  1. #include <iostream>
  2. #include <cstdlib>
  3. #define city1 7
  4. using namespace std;
  5. int  main(void){
  6.      char city[city1]={'A','B','C','D','E','F','G'};
  7.      int city_le[city1]={25 , 49 , 95 , 178 , 264 , 327 , 373 };
  8.      int i,j;
  9.      for (int i=0; i<city1; i++){
  10.          for(int j=i+1; j<city1; j++){
  11.                  if ((city_le[j]-city_le[i])<=50){
  12.                  cout<<endl;
  13.                     cout<<city[i]<< "~"<< city[j]<<"價錢:"<<(city_le[j]-city_le[i])*2.5<<endl;
  14.                     cout<<endl;
  15.                     }else if((city_le[j]-city_le[i])>50||(city_le[j]-city_le[i])<=200){
  16.                           cout<<endl;
  17.                           cout<<city[i]<< "~"<< city[j]<<"價錢:"<<(city_le[j]-city_le[i])*2.2<<endl;
  18.                     cout<<endl;
  19.                     }else if((city_le[j]-city_le[i])>200){
  20.                           cout<<endl;
  21.                           cout<<city[i]<< "~"<< city[j]<<"價錢:"<<(city_le[j]-city_le[i])*2<<endl;
  22.                           cout<<endl;
  23.                           }
  24.                           }
  25.                           }
  26.                           cout<<"怎麼這麼麻煩阿``好難``"<<endl;
  27.                           cout<<endl;

  28. system("pause");
  29. return 0;
  30. }
複製代碼
分數掛蛋的心情像空白的紙,再次期望著奇蹟的到來。

TOP

返回列表