Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Remember to review the cpp directions and options pdf file: If you downloaded Visual Studio, you will be submitting a file named Lab4.cpp If you

  • Remember to review the cpp directions and options pdf file:
  • If you downloaded Visual Studio, you will be submitting a file named Lab4.cpp
  • If you use an online C++ compiler, you can submit your code in the text entry box.
  • In this lab, you are to use what you learned about Control Structures (Selection) in chapter 4.
  • Redo Lab#3 but use ado whileloop to repeat the menu options.
  • Make sure the menu display again even if the user puts in a character instead of a number, that is, do input error checking right after the input of the menu option. We learned about this in chapter 3.

Example of a do...while loop:

// do something until the number equals 3

int number;

do

{

cout << "Enter a number: ";

cin >> number;

//input error checking happens here. you need to clear input stream, ignore the rest of the input line

// then prompt the user and take input again

// process a task until user enters a 3 for number.

}while(number !=3);

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

Financial management theory and practice

Authors: Eugene F. Brigham and Michael C. Ehrhardt

12th Edition

978-0030243998, 30243998, 324422695, 978-0324422696

Students also viewed these Programming questions

Question

Explain the basis of stewardship and servant leadership.

Answered: 1 week ago