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 6605599
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 25, 20262026-05-25T19:18:10+00:00 2026-05-25T19:18:10+00:00

I setup a while loop where i want to choose r or h, i

  • 0

I setup a while loop where i want to choose r or h, i dont want to use forloops but i want to use a switch why is it when i enter r or h it keeps repeating a million times the cout for that case? I cant get it to just say it once..

while (chooseMove == 'r' or 'h')
{
    switch (chooseMove) 
    {
    case 'r':
            cout << "you chose r";

        break;
    case 'h':
        cout << "you chose h";
        break;
    }




} 

I also tried it with forloops and had the same problem i cant figure it out

  • 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-25T19:18:10+00:00Added an answer on May 25, 2026 at 7:18 pm

    What you mean is while (chooseMove == 'r' or chooseMove == 'h'). What you’ve currently written is equivalent to ((chooseMove == 'r') or ('h')), and 'h' evaluates as true.


    Maybe you were also asking for help with the input logic:

    char c;
    bool success = false;
    
    while (std::in >> c)
    {
      switch(c) {
        case 'r': /* ... */ success = true; break;
        case 'h': /* ... */ success = true; break;
      }
    
      if (success) break;
    }
    

    This will also terminate if the input stream is closed, and you can use success to inspect the success of the operation.

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

Sidebar

Related Questions

I've started using Sublime Text and it's great. But while editing Wix setup files
I want to use a for loop to print every date between 2 dates.
I want to prepare a statement for use inside a loop. When I try
I'm trying to set up a while loop that will ask the user for
I'm trying to set up a while loop that inserts multiple rows into a
While creating the setup for VB.net application I am getting the following warning: Warning
While installing the new eclipse indigo IDE I've tried to setup the tomcat server
I've used tinymce for quite a while now (simple setup) and it has been
I've been tackling this for a while. I setup a completely new machine. I've
I'm trying to do an initial setup with Hibernate in Eclipse, while deploying with

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.