#37616: C++解法


930302123 (a1115508)

學校 : 高雄私立正義高級中學
編號 : 113579
來源 : [182.233.7.217]
最後登入時間 :
2023-09-20 09:46:09
a012. 10055 - Hashmat the Brave Warrior -- UVa10055 | From: [182.233.7.217] | 發表日期 : 2023-09-20 10:09

include<iostream>
#include<cmath>
using namespace std;
int main() {

#要記得long long int
    long long int a = 0, b = 0;
    while (cin >> a >> b) {
        long long int total = 0;
        total = abs(a - b);
        cout << total << endl;
    }
}

 
ZeroJudge Forum