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