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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 16, 20262026-06-16T09:02:42+00:00 2026-06-16T09:02:42+00:00

Possible Duplicate: How to write a `for` loop over bool values (false and true)

  • 0

Possible Duplicate:
How to write a `for` loop over bool values (false and true)

I want to perform the same task twice with bool flag true first and false second. Is there an elegant way to do that (maybe using a loop)?

My idea was to do something like the following but this is a way too complicated.

bool flag = true;
for(int i = 0; i < 2; ++i, flag = !flag)
{
    // ...
}
  • 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-06-16T09:02:43+00:00Added an answer on June 16, 2026 at 9:02 am

    I figured out a nice way using a do-while-loop.

    bool flag = false;
    do
    {
        // ...
        flag = !flag;
    }
    while(flag)
    

    Since the code in a do-while-loop is executed at least once, I can toggle the flag at the end and get exactly two runs.

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

Sidebar

Related Questions

Possible Duplicate: for loop optimization Let's say we want to loop over the characters
Possible Duplicate: In C++ why can't I write a for() loop like this: for(
Possible Duplicate: In C++ why can’t I write a for() loop like this: for(
Possible Duplicate: do-while loop in Python? How do I write a loop in Python
Possible Duplicate: read/write to Windows Registry using Java I want to read the registry
Possible Duplicate: Is it possible to write swap method in Java? Given two values
Possible Duplicate: How to write a:hover in inline CSS? Using CSS, I want to
Possible Duplicate: How to write a UTF-8 file with Java? I want to create
Possible Duplicate: how to create counter loop in django template? I want to print
Possible Duplicate: Detecting SMS incoming and outgoing I want to write a app that

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.