銀行/支付系統 | Apple Pay | Google Pay | Samsung Pay | Garmin Pay | Fitbit Pay | 支援家數 | |
---|---|---|---|---|---|---|---|
國泰世華銀行 | ✅ | ✅ | ✅ | ✅ | ✅ | 5 | |
國泰世華銀行 - 金融卡 | ✅ | ✅ | ✅ | ✅ | ✅ | 5 | |
中國信託銀行 | ✅ | ✅ | ✅ | ✅ | ✅ | 5 | |
中國信託銀行 - 金融卡 | ✅ | ✅ | ✅ | 3 | |||
台新國際商業銀行 | ✅ | ✅ | ✅ | ✅ | ✅ | 5 | |
台新國際商業銀行 - 金融卡 | ✅ | ✅ | ✅ | ✅ | ✅ | 5 | |
聯邦銀行 | ✅ | ✅ | ✅ | ✅ | ✅ | 5 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <iostream> | |
using namespace std; | |
int main () | |
{ | |
// 這是單行註解,我要開始宣告了! | |
int dividend = 5, divisor; // 第一個整數是寫死的,是被除數;第二個整數是除數。 | |
cout << "請輸入除數:"; | |
cin >> divisor; // 除數在這裡給使用者輸入儲存 |