โ Back to If Statements
Question 323
Triangle Validity
Triangle Validity
Read three positive integers as side lengths, each on its own line. Three sides can form a triangle only if each side is shorter than the sum of the other two. PrintValid triangleif they can form a triangle, otherwiseInvalid triangle. For example, for input3then4then5, print: Valid triangle
Expected Output:
Valid triangle
Topics:
If Statements
Code Editor
1
Tab to indent ยท Ctrl+Enter to run ยท Ctrl+Space to expand shortcuts (cw, cr, fori)
Your Output
Run your code to see the output here...
Test Cases
Run your code to see test case results.