UVA 10055(Hashmat the brave warrior )

这道题居然也出现了WA的情况,自己反思下!

#include<iostream>
using namespace std;

int main()
{
long long a, b;
while( cin >> a >> b)
{
if( a < b)
cout << b - a << endl;
else
cout << a - b << endl;
}
return 0;
}

 

你可能感兴趣的:(hash)