UVa 10055 Hashmat the brave warrior

  这题非常简单,但是因为没看清题,WA了好几次
“or vice versa” 反之亦然
说明输入的数有可能是先输入敌方,再输入已方,所以应该加个判断
 
 
 
#include<iostream>
using namespace std;
int main()
{
 long a,b;
 while(cin>>a>>b)
  if(a>b)
   cout<< a-b <<endl;
  else
   cout<< b-a <<endl;  
 return 0;
}

你可能感兴趣的:(UVa 10055 Hashmat the brave warrior)