Computer Science, asked by debjitk87, 11 months ago

write a program to accept three side of the triangle and check whether the triangle is right angle or not​

Answers

Answered by shriharikrishna007
1

Answer:

Given three sides, check whether triangle is valid or not.

Examples:

Input :  a = 7, b = 10, c = 5  

Output : Valid

Input : a = 1 b = 10 c = 12  

Output : Invalid

Similar questions