C++
Create a program that will compute:

Having Trouble Meeting Your Deadline?
Get your assignment on C++ completed on time. avoid delay and – ORDER NOW
- The area and circumference of a circle. Prompt the user to enter the radius. Use 3.14159 for pi.
- The area and the perimeter of a rectangle. Prompt the user to enter the length and the width.
- Use the plan you created last week. If need be revise your pseudocode and algorithm to match expect output and Mimir test cases.
- Once again desk check your pseudocode and algorithm.
- Do not allow for invalid input.
- Allow for positive values only.
- Format to 3 decimal places
-
safsa.png
-
sdsghsg.png
-
D53FEC49-414B-4827-B8FC-1E34D117B272.jpeg
-
Project1StarterCode.zip
-
85E5DE3B-693D-4E67-B38F-8EB34CFDF7EB.jpeg
-
49FF25C2-FE99-4EF0-BF9D-CA84F91BC7D5.jpeg
-
828F68C1-F93F-4EAF-9AB8-580395DDF43E.jpeg
-
CD51A6DF-5C69-4101-BA51-AF4FC544CE95.jpeg
-
FF905A49-F635-4FB0-A2AB-2E2029FBFCEE.jpeg
-
9C2D35E4-78CE-46C9-AAE8-31D4CBB381EA.jpeg
-
CF79A66A-CAF3-4958-8B3B-BE8A2EBE950E.jpeg
starter.cpp
starter.cpp
"Geometry Calculatornn" ;
"Select a figure" << endl ;
"1. Circlen" ;
"2. Rectanglen" ;
"3. Quitnn" ;
"Enter your choice (1-3): " ;
"The valid choices are 1 through 3. Run then"
<< "program again.n" ;
"nEnter the circle's radius: " ;
"nThe radius must be greater than zero.n" ;
"Enter 1 for area or 2 for circumference: " ;
"nThe area is " << your code << endl ;
}
"Circumference" << endl ;
"nThe circumference is " << your code << endl ;
"Invalid selection" << endl ;
"nEnter the rectangle's length: " ;
"Enter the rectangle's width: " ;
"nOnly enter positive values for " << "length and width.n" ;
"Enter 1 for area or 2 for perimeter" << endl ;
"Area" << endl ;
"nThe area is " << your code << endl ;
"Perimeter" << endl ;
"nThe perimeter is " << your code << endl ;
"Invalid selection" << endl ;
"Program ending.n" ;
"The valid choices are 1 through 3. Run then" << "program.n" ;

