
Concept explainers
Rewrite the following
#include <iostream> using namespace std; int main()
{
int selection;
cout << “Which formula do you want to see?\n\n”;
cout << “ 1. Area of a circle\n”;
cout << “2. Area of a rectangle\n”;
cout << “3. Area of a cylinder\n”;
cout << “4. None of them\n”;
cin >> selection; if (selection == 1)
cout << “Pi times radius squared\n”;
else if(selection == 2)
cout << “Length times width\n”;
else if(selection == 3)
cout << “Pi times radius squared times height\n”;
else if(selection == 4)
cout << “Well okay then, good bye!\n”;
else
cout << “Not good with numbers, eh?\n”;
return 0;
}

Want to see the full answer?
Check out a sample textbook solution
Chapter 4 Solutions
Starting Out with C++ from Control Structures to Objects (9th Edition)
Additional Engineering Textbook Solutions
Starting Out With Visual Basic (8th Edition)
Java How to Program, Early Objects (11th Edition) (Deitel: How to Program)
Degarmo's Materials And Processes In Manufacturing
Electric Circuits. (11th Edition)
Java: An Introduction to Problem Solving and Programming (8th Edition)
Mechanics of Materials (10th Edition)
- Programming with Microsoft Visual Basic 2017Computer ScienceISBN:9781337102124Author:Diane ZakPublisher:Cengage LearningC++ Programming: From Problem Analysis to Program...Computer ScienceISBN:9781337102087Author:D. S. MalikPublisher:Cengage LearningProgramming Logic & Design ComprehensiveComputer ScienceISBN:9781337669405Author:FARRELLPublisher:Cengage
- C++ for Engineers and ScientistsComputer ScienceISBN:9781133187844Author:Bronson, Gary J.Publisher:Course Technology PtrMicrosoft Visual C#Computer ScienceISBN:9781337102100Author:Joyce, Farrell.Publisher:Cengage Learning,EBK JAVA PROGRAMMINGComputer ScienceISBN:9781305480537Author:FARRELLPublisher:CENGAGE LEARNING - CONSIGNMENT




