[ZJa012][UVA10055] Hashmat the Brave Warrior
題目:
http://zerojudge.tw/ShowProblem?problemid=a012
======================================================
#include<stdio.h>
int main()
{
long long int a,b,z;
while(scanf("%lld%lld",&a,&b)!=EOF)
{
z=b-a;
if(z<0)
z=-z;
printf("%lld\n",z);
}
return 0;
}
http://zerojudge.tw/ShowProblem?problemid=a012
======================================================
#include<stdio.h>
int main()
{
long long int a,b,z;
while(scanf("%lld%lld",&a,&b)!=EOF)
{
z=b-a;
if(z<0)
z=-z;
printf("%lld\n",z);
}
return 0;
}
留言
張貼留言