Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7091543
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 28, 20262026-05-28T08:11:54+00:00 2026-05-28T08:11:54+00:00

I want to have a menu display that accepts user input. However, I want

  • 0

I want to have a menu display that accepts user input. However, I want the user to be able to go back to the beginning of the menu to reselect options.

while(end != 1) {
    display menu options
    prompt user for input
        if(input == x) {
            do this
        }
        else
            do that
}

then, i want it to skip back up to the beginning of the loop and ask the question over again. Howcan I do this without creating an infinite loop of the menu printing across the screen?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-28T08:11:55+00:00Added an answer on May 28, 2026 at 8:11 am

    Unfortunately you didn’t really show the code you are using but rather some pseudo code. Thus, it is hard to tell what you are actually trying to do. From the description of your problem and your pseudo code I suspect, however, that the root of the problem is that you don’t check your inputs and don’t restore the stream to a reasonably good state! To read the menu selection you probably want to use code akin to this:

    int choice(0);
    if (std::cin >> choice) {
        deal with the choice of the menu here
    }
    else if (std::cin.eof()) {
        // we failed because there is no further input: bail out!
        return;
    }
    else {
        std::string line;
        std::cin.clear();
        if (std::getline(std::cin, line)) {
             std::cout << "the line '" << line << "' couldn't be procssed (ignored)\n";
        }
        else {
            throw std::runtime_error("this place should never be reached! giving up");
        }
    }
    

    This is just a rough layout of how the input would basically look like. It would probably be encapsulated into a function (in which case you’d want to bail out of from a closed input somewhat differently, possibly using an exception or a special return value). The main part of his is to

    1. restore the stream back to good state using std::isteam::clear()
    2. skip over the bad input, in this case using std::getline() with a std::string; you could also just std::istream::ignore() the remainder of the line

    There may be other problems with your menu but without seeing concrete code I’d think it is hard to tell what the concrete problems are.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a menu with button objects in As3. I want to display the
I have a menu that changes and I want to show content in the
I want that the menu i have created for testing entries should come in
I have a CSS dropdown menu that is functioning how I want it to
I am building a menu that I want to display in a certain way.
I have a dropdown menu on my site that I want to use to
I have the following code that I want to slim down. $('#1').hover(function() { $('#hiddenMenu1').css('display',
I have a side menu that I want to to have the Admin option
I have a menu built with <ul> and <li> tags. I want to have
I have a menu bar and I want to create a div for each

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.