返回列表 發帖

計算各國匯率計算成台幣的問題

題目:
計算各國錢幣計算成台幣
計算台幣換算為各國錢幣
我是小紅老師,小紅老師是我!!

本帖最後由 chuangjoy 於 2010-5-8 11:24 編輯
  1. #include <iostream>
  2. #include <cstdlib>
  3. using namespace std;
  4. int main(void){
  5.    
  6.     float m;
  7.     float t;
  8.    
  9.     cout << "請輸入要兌換的錢: 1.美金 2.港幣 3.英鎊 4.澳幣 5.加拿大幣 " << endl;
  10.     cout << "6.新加坡幣 7.瑞士法郎 8.日圓 9.瑞典幣 10.紐元 11.泰幣" << endl;
  11.     cout << "12.菲國比索 13.歐元 14.馬來幣 15.人民幣" << endl;
  12.     cin >> m;
  13.    
  14.     cout << "請輸入台幣" << endl;
  15.     cin >> t;
  16.    
  17.     if(m = 1){
  18.          t = t / 31.43;
  19.          cout << t << endl;
  20.          }else if(m = 2){
  21.                t = t / 3.94;
  22.                cout << t << endl;
  23.                }else if(m = 3){
  24.                      t = t / 46.00;
  25.                      cout << t << endl;
  26.                      }else if(m = 4){
  27.                            t = t / 27.89;
  28.                            cout << t << endl;
  29.                            }else if(m = 5){
  30.                                  t = t / 31.10;
  31.                                  cout << t << endl;
  32.                                  }else if(m = 6){
  33.                                        t = t / 22.19;
  34.                                        cout << t << endl;
  35.                                        }else if(m = 7){
  36.                                              t = t / 28.04;
  37.                                              cout << t << endl;
  38.                                              }else if(m = 8){
  39.                                                    t = t / 0.33;
  40.                                                    cout << t << endl;
  41.          }else if(m = 9){
  42.                t = t / 3.71;
  43.                cout << t << endl;
  44.                }else if(m = 10){
  45.                      t = t / 22.31;
  46.                      cout << t << endl;
  47.                      }else if(m = 11){
  48.                            t = t / 0.87;
  49.                            cout << t << endl;
  50.                            }else if(m = 12){
  51.                                  t = t / 0.64;
  52.                                  cout << t << endl;
  53.                                  }else if(m = 13){
  54.                                        t = t / 39.93;
  55.                                        cout << t << endl;
  56.                                        }else if(m = 14){
  57.                                              t = t / 8.25;
  58.                                              cout << t << endl;
  59.                                              }else if(m = 15){
  60.                                                    t = t / 4.56;
  61.                                                    cout << t << endl;
  62.                                                    }
  63.     system("pause");
  64.     return 0;
  65. }
複製代碼

TOP

  1. #include <iostream>
  2. #include <cstdlib>
  3. using namespace std;
  4. int main(void){
  5.    
  6.     int money , num;
  7.     double mon[15] = {31.43,3.94,46,27.89,30.1,22.19,28.04,0.33,3.71,
  8.     22.31,0.87,0.64,39.93,8.25,4.56};
  9.    
  10.     cout << "請輸入要兌換的幣種: 1.美金(USD) 2.港幣(HKD)" << endl;
  11.     cout << "3.英鎊(GBP) 4.澳幣(AUD) 5.加拿大幣(CAD) 6.新加坡幣(SGD)" << endl;
  12.     cout << "7.瑞士法郎(CHF) 8.日圓(JPY) 9.瑞典幣(SEK) 10.紐元(NZD)" << endl;
  13.     cout << "11.泰幣(THB) 12.菲國比索(PHP) 13.歐元(EUR) 14.馬來幣(MYR)" << endl;
  14.     cout << "15.人民幣(CNY)" << endl;
  15.     cin >> money;
  16.     cout << "請輸入要兌換的金額" << endl;
  17.     cin >> num;
  18.     cout << "兌換成台幣後的金額為:" << num * mon[money - 1] << endl;
  19.    
  20.    
  21.     system("pause");
  22.     return 0;
  23. }
複製代碼

TOP

  1. #include <iostream>
  2. #include <cstdlib>
  3. using namespace std;
  4. int main(void){
  5.     int money;
  6.     int money2;
  7.     double mon[19]={31.43,3.94,46,27.89,30.10,22.19,28.04,0.33,0.00,3.71,22.31,0.87,0.64,0.00296,39.93,0.02,0.00142,8.25,4.56};
  8.     cout<<"請輸入您要選擇的幣值:   1.美金  2.港幣  3.英鎊 4.澳幣  5.加拿大幣  6.新加坡幣"<<endl;
  9.     cout<<"7.瑞士法郎  8.日圓  9.南非幣 10.瑞典幣  11.紐元   12.泰幣  13.菲國比索  "<<endl;
  10.     cout<<"14.印尼幣 15.歐元  16.韓元  17.越南盾  18.馬來幣  19.人民幣  "<<endl;
  11.     cin>>money;
  12.     cout<<"請輸入money~"<<endl;
  13.     cin>>money2;
  14.     cout<<"money="<<money2*mon[money-1]<<endl;
  15.    
  16. system("pause");
  17. return 0;
  18. }
複製代碼
分數掛蛋的心情像空白的紙,再次期望著奇蹟的到來。

TOP

  1. #include <iostream>
  2. #include <cstdlib>
  3. using namespace std;
  4. int main(void){
  5.    
  6.     int money;
  7.     int num;
  8.     double mon[15] = {31.43,3.94,46,27.89,30.1,22.19,28.04,0.33,3.71,
  9.     22.31,0.87,0.64,39.93,8.25,4.56};
  10.    
  11.     cout << "請輸入要兌換的貨幣: 1.美金 2.港幣 3.英鎊 4.澳幣" << endl;
  12.     cout << "5.加拿大幣 6.新加坡幣 7.瑞士法郎 8.日圓 9.瑞典幣" << endl;
  13.     cout << "10.紐元 11.泰幣 12.菲國比索 13.歐元 14.馬來幣 15.人民幣" << endl;
  14.     cin >> money;
  15.     cout << "請輸入要轉換成台幣的貨幣" << endl;
  16.     cin >> num;
  17.     cout << "兌換成台幣後的金額為:" << num * mon[money - 1] << endl;
  18.    
  19.     system("pause");
  20.     return 0;
  21. }
複製代碼

TOP

返回列表