高中生程式解題系統:10055 - Hashmat the Brave Warrior

若您覺得文章寫得不錯,請點選文章上的廣告,來支持小編,謝謝。

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

這題需要用到 long long int,也要取兩個整數差的絕對值。

程式碼:

#include <iostream>
using namespace std;
int main()
{
long long int a, b, d;
while( cin >> a >> b )
{
d = a - b;
if( d < 0 )
d = -d;
cout << d <<endl;
}
return 0;
}
view raw a012.cpp hosted with ❤ by GitHub

沒有留言: