CO2: Write algorithms to solve different programming problems using flowchart and pseudocode
TRIANGLE CLASSIFICATION: Determine if three sides (positive integers) can form a triangle and classify it as equilateral, isosceles, or scalene. The triangle property indicates that a side of a triangle should be less than the sum of the other two sides.
Examples:
Side a: 1
Side b: 1
Side c: 1
EQUILATERAL
Side a: 1
Side b: 2
Side c: 2
ISOSCELES
Side a: 2
Side b: 3
Side c: 4
SCALENE
Side a: 1
Side b: 2
Side c: 3
NOT A TRIANGLE
Side a: 1
Side b: 1
Side c: 2
NOT A TRIANGLE
Instructions: Write pseudocode and a flowchart for the programming problem above. Use diagrams.net (or a similar app) to draw your flowchart and a text editor to write your pseudocode. Combine your flowcharts and pseudocodes into a single document using MS Word or any word processor.