CJCoding With Joseph

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. Print Valid triangle if they can form a triangle, otherwise Invalid triangle. For example, for input 3 then 4 then 5, print:

Valid triangle

Expected Output:

Valid triangle
Topics:
If Statements
๐Ÿ“ฅ Auto-Input:
3\n4\n5
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 (cw, cr, fori)

Your Output

Run your code to see the output here...

Test Cases

Run your code to see test case results.