Skip to content

Instantly share code, notes, and snippets.

View hansen033's full-sized avatar

Hansen Chien hansen033

  • Taiwan
View GitHub Profile
@HenryYang
HenryYang / tokenPaymentBanks.md
Last active January 2, 2023 17:45 — forked from shyuan/tokenPaymentBanks.md
在台灣的國際 Pay 信用卡與金融卡支援銀行對照表

對應表

銀行/支付系統 Apple Pay Google Pay Samsung Pay Garmin Pay Fitbit Pay 支援家數
國泰世華銀行 5
國泰世華銀行 - 金融卡 5
中國信託銀行 5
中國信託銀行 - 金融卡 3
台新國際商業銀行 5
台新國際商業銀行 - 金融卡 5
聯邦銀行 5
@goodjack
goodjack / 20171005.cpp
Last active October 15, 2017 14:32
20171005 各種觀念混合範例(if/else if/else、&&、||、cin)
#include <iostream>
using namespace std;
int main ()
{
// 這是單行註解,我要開始宣告了!
int dividend = 5, divisor; // 第一個整數是寫死的,是被除數;第二個整數是除數。
cout << "請輸入除數:";
cin >> divisor; // 除數在這裡給使用者輸入儲存