Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

This is due tonight. Please help me arrange this into an executable code so that i can turn it into my teacher as a .cpp

This is due tonight. Please help me arrange this into an executable code so that i can turn it into my teacher as a .cpp file??

Consider the following program in which the statements are in the incorrect order. Rearrange the statements so that the program prompts the user to input the height and the radius of the base of a cylinder and outputs the volume and surface area of the cylinder. Format the output to two decimal places.

#include #include

int main() {}

double height; cout << "Volume of the cylinder = "

<< PI * pow(radius, 2.0)* height << endl;

cout << "Enter the height of the cylinder: "; cin >> radius; cout << endl;

return 0;

double radius;

cout << "Surface area: " << 2 *PI *radius *height + 2 * PI *pow(radius, 2.0) << endl;

cout << fixed << showpoint << setprecision(2);

cout << "Enter the radius of the base of the cylinder: "; cin >> height; cout << endl;

#include const double PI = 3.14159;

using namespace std;

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Learn To Program Databases With Visual Basic 6

Authors: John Smiley

1st Edition

1902745035, 978-1902745039

More Books

Students also viewed these Databases questions

Question

3. Is IBMs program really a mentoring program? Why or why not?

Answered: 1 week ago