CJCoding With Joseph

Right Triangle Check

Read three integers a, b, and c representing 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. Print Right triangle or Not a right triangle.

Because the sides are unsorted, check every arrangement. For example, given the input 3 4 5, the program prints:

Right triangle

Expected Output:

Right triangle
Topics:
If Statements
๐Ÿ“ฅ Auto-Input:
3 4 5
This input is automatically fed to your program's stdin
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.