題目連結: https://zerojudge.tw/ShowProblem?problemid=a012

# 解題思路

用最單純的方法求絕對值吧

# 程式碼

#include <iostream>
using namespace std;
int main()
{
    long long int a,b,ans;
    while(cin>>a>>b)
    {
        ans=a-b;
        if(ans<0)
            ans=-ans;
        cout<<ans << endl;
    }
}
更新於 閱讀次數

用實際行動犒賞爆肝的我😀

Zrn Ye LinePay

LinePay