পৃষ্ঠাসমূহ

শুক্রবার, ২৯ জানুয়ারী, ২০১৬

Jan’s LightOJ :: 1053 - Higher Math Solution



#include <stdio.h>
#include <math.h>
int main(){
int input,i=1;

unsigned a,o,h;
scanf("%d",&input);

while(input-->0)
{
scanf("%d%d%d",&a,&o,&h);
if(sqrt(a*a+o*o)==h)
{
printf("Case %d: yes\n",i++);
}
else if(sqrt(h*h+o*o)==a)
{
printf("Case %d: yes\n",i++);
}
else if(sqrt(a*a+h*h)==o)
{
printf("Case %d: yes\n",i++);
}
else
printf("Case %d: no\n",i++);



}

return 0;
}

কোন মন্তব্য নেই:

একটি মন্তব্য পোস্ট করুন