Right Angled Triangle Check
The length of the three sides of a triangle A, B and C are passed as the input. The program must check it it's a right angled triangle. Print YES or NO based on the check.
Input Format:
The first line contains A.
The second line contains B.
The third line contains C.
The first line contains A.
The second line contains B.
The third line contains C.
Output Format:
The first line contains YES or NO
The first line contains YES or NO
Boundary Conditions:
1 <= A, B, C <= 9999
1 <= A, B, C <= 9999
Example Input/Output 1:
Input:
5
3
4
Input:
5
3
4
Output:
YES
YES
Example Input/Output 2:
Input:
11
6
9
Input:
11
6
9
Output:
NO
Code:NO
#include <iostream>
using namespace std;
int main(int argc, char**
argv)
{
int a,b,c;
cin>>a>>b>>c;
if((b*b)+(c*c)==(a*a))
cout<<"YES";
else
{
if((a*a)+(b*b)==c*c)
cout<<"YES";
else
cout<<"NO";
}
}
Please do comment If u have any Queries!
No comments:
Post a Comment