Question
Use code to determine the type triangle given the lengths of its three sides.
The picture below provides some guiding information;

Note:
- Make your code flexible so that the order of in which the sides are input does not affect the result
- The output should be in the exact form as shown in the test samples below; You may these samples to test your code
- check_triangle(60,60,60) = “The triangle is an equilateral triangle”
- check_triangle(20,20,80) = “The triangle is an isosceles triangle”
- check_triangle(24,30,18) = “The triangle is a right-angled triangle”
- check_triangle(1,2,3) = “The triangle is a scalene triangle”
- Other test cases are provided in main.cpp
- Compare the results of your code with the expected strings.
- Note that C++ is case sensitive
Deadline
10th November 2022, 11:59 PM.
Guidelines
- This is a group assignment
- Maximum group size is 5
- Decide your group members before joining the assignment and create a group on the page afterwards.
- Groups already made, remain intact and shall be used throughout all assignments.
- To make adjustments to groups, reach out to your respective TA.
- One member is needed to make a group and the rest are required to join that group.
- Uniquely name your group (Advised to use the name of one group member to avoid repetition of names)
- Only one member is needed to submit on behalf of the group, however, all members have the ability to submit.
Assignment Registration
- Join the assignment page;