Responsive Ads Here

Friday, October 17, 2014

UVA-10055 (Hashmat the Brave Warrior) EASY

10055-- Hashmat the Brave Warrior.c


0001

#include<stdio.h>
#include<math.h>
int main()
{ long long int i,j,d;
while (scanf("%lld %lld",&i,&j)!=EOF)
{
if(j<i)
{
d=i-j;
printf("%lld\n",d);
}
else if (pow(2,32)<i)
{
return 0;
}
else
{
d=j-i;
printf("%lld\n",d);
}
}
return 0;
}


 


#include<stdio.h>
int main()
{
long long int a,b,c;
while(scanf("%lld%lld",&a,&b)==2)
{
if(a>b)
c=a-b;
else
c=b-a;
printf("%lld\n",c);
}
return 0;
}


10055-- Hashmat the Brave Warrior UVA Link

1 comment:

  1. উপরের প্রোগামটিতে বলা হয়েছে । হাসমতের সৈন্য ও তার বিপরীত পক্ষের সৈন্যদের মধ্যে পার্থক্য কত ? এখান দুটি ইনপুটের মধ্যে কোনটি হাসমতের তা উল্লেখ্য নেই ,তবে ছোট সংখ্যা টি হাসমতের সৈন্যের সংখ্যা হবে ।

    ReplyDelete

php4

<?php    // Start the session  session_start();  ?>  <!DOCTYPE html>  <html>  <head>       <link rel=&q...