โ Back to If Statements
Question 390
Right Triangle Check
Right Triangle Check
Read three integersa,b, andcrepresenting side lengths in no particular order. They form a right triangle if the square of the longest side equals the sum of the squares of the other two. PrintRight triangleorNot a right triangle. Because the sides are unsorted, check every arrangement. For example, given the input3 4 5, the program prints: Right triangle
Expected Output:
Right triangle
Topics:
If Statements
Code Editor
1
Tab to indent ยท Ctrl+Enter to run ยท Ctrl+Space to expand shortcuts (cout, fori)
Your Output
Run your code to see the output here...
Test Cases
Run your code to see test case results.