Your goal is write a console application that computes the perimeter length and area of regular polygons. Here's the pseudocode:
- iostream, cmath, namespace std
- Declare variables
- Start loop
- Prompt user for how many sides for the polygon
- Prompt user for length per side
- Calculate perimeter
- Calculate area using equation (on chalkboard)
- Output perimeter & area
- Prompt user to do more polygons
Upload your main.cpp file when you're done...
.