Consider a program that accepts any three positive numbers as input and then displays whether the triangle whose three sides are equal to these three numbers is equilateral, isosceles, or scalene. It displays the output in the following format:
The triangle formed by these three numbers is . . .
For example, if the user entered 2, 2, 3, then the response would be:
The triangle formed by these three numbers is isosceles.
The following logic has been proposed for this program:
Test the above logic with the following test data, and document the results of each test case.