Course Content
C++ Conditional Statements
1. Introduction to Conditional Statements
2. Conditional Control Flow Practice
3. Advanced Topics
C++ Conditional Statements
Which Triangle
Task
Identify the type of triangle based on the lengths of its sides whether it is a equilateral triangle, or isosceles triangle.
Output:
It is isosceles triangle!
if it is isosceles.It is equilateral triangle!
if it is equilateral.None of them
if it is none of the above.
Everything was clear?
Section 2. Chapter 3