題目連結 http://zerojudge.tw/ShowProblem?problemid=a012。
這題需要用到 long long int,也要取兩個整數差的絕對值。
程式碼:
This file contains 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() | |
{ | |
long long int a, b, d; | |
while( cin >> a >> b ) | |
{ | |
d = a - b; | |
if( d < 0 ) | |
d = -d; | |
cout << d <<endl; | |
} | |
return 0; | |
} |
沒有留言:
張貼留言