Geometry Calculator C++ Code
This code is able to calculate the area of a Circle, a Rectangle, or a Triangle.
The user is presented with a menu:
If the user selects to calculate the area of a circle, it will ask for its radius:
If the user selects to calculate the area of a rectangle, it will ask for its length and width:
If the user selects to calculate the area of a triangle, it will ask for its base and height:
Calculations are performed after the input and the results are shown in the screen.
To exit, press 4 and it will quit immediately.