我是第二名嗎??- #include <iostream>
- #include <cstdlib>
- #define city1 7
- using namespace std;
- int main(void){
- char city[city1]={'A','B','C','D','E','F','G'};
- int city_le[city1]={25 , 49 , 95 , 178 , 264 , 327 , 373 };
- int i,j;
- for (int i=0; i<city1; i++){
- for(int j=i+1; j<city1; j++){
- if ((city_le[j]-city_le[i])<=50){
- cout<<endl;
- cout<<city[i]<< "~"<< city[j]<<"價錢:"<<(city_le[j]-city_le[i])*2.5<<endl;
- cout<<endl;
- }else if((city_le[j]-city_le[i])>50||(city_le[j]-city_le[i])<=200){
- cout<<endl;
- cout<<city[i]<< "~"<< city[j]<<"價錢:"<<(city_le[j]-city_le[i])*2.2<<endl;
- cout<<endl;
- }else if((city_le[j]-city_le[i])>200){
- cout<<endl;
- cout<<city[i]<< "~"<< city[j]<<"價錢:"<<(city_le[j]-city_le[i])*2<<endl;
- cout<<endl;
- }
- }
- }
- cout<<"怎麼這麼麻煩阿``好難``"<<endl;
- cout<<endl;
- system("pause");
- return 0;
- }
複製代碼 |