CJCoding With Joseph

Triangle Type

Read three side lengths, each on its own line. Print the triangle type: Equilateral if all three sides are equal, Isosceles if exactly two sides are equal, or Scalene if no sides are equal. Assume the sides always form a valid triangle. For example, for input 5 then 5 then 8, print:

Isosceles

Expected Output:

Isosceles
Topics:
If Statements
๐Ÿ“ฅ Auto-Input:
5\n5\n8
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.