The do-while tag has no wiki summary.
115
votes
22answers
6k views
Are “while(true)” loops so bad?
I've been programming in Java for several years now, but I just recently returned to school to get a formal degree. I was quite surprised to learn that, on my last assignment, I lost points for using ...
21
votes
9answers
596 views
Other ways to deal with “loop initialization” in C#
To start with I'll say that I agree that goto statements are largely made irrelevant by higher level constructs in modern programming languages and shouldn't be used when a suitable substitute is ...
20
votes
24answers
3k views
do…while vs while [closed]
Possible Duplicates:
While vs. Do While
When should I use do-while instead of while loops?
I've been programming for a while now (2 years work + 4.5 years degree + 1 year pre-college) and ...
10
votes
31answers
2k views
Test loops at the top or bottom? (while vs. do while)
When I was taking CS in college (mid 80's), one of the ideas that was constantly repeated was to always write loops which test at the top (while...) rather than at the bottom (do ... while) of the ...
6
votes
3answers
428 views
how does do{} while(0) work in macro?
Though this topic has been discussed many times in this forum and all other forums, still I have doubts. Please help.
How does the do{} while(0) in macro work in Linux kernel?
For example,
#define ...
4
votes
3answers
185 views
do-while is the fastest loop in php?
I have profiled for, while and do-while loops with something simple:
while ($var < 1000000) {
++$var;
}
do {
++$var;
} while ($var < 1000000);
for ($var = 0; $var < 1000000; ++$var) {
...
3
votes
3answers
56 views
do-while loops with continue and with and without a label in Java
Let's look at the following do-while loop. It's quite obvious and there is no question about it.
do
{
System.out.println("Hello world");
break;
} while(false);
It's quite obvious and just ...
3
votes
7answers
159 views
Java: Scope of do-while loop?
In Java, the body of a do-while loop and the loop condition do not belong to the same scope. So the following code won't compile:
do {
boolean b = false;
} while (b); // b cannot be resolved to a ...
3
votes
3answers
164 views
Perl do…while and last command
I've just encoutered a very weird behavior, which I really couldnt explain:
do {
my $qry = $self->getHTMLQuery(undef,$mech->content());
next if (!defined($qry));
push(@prods,map ...
3
votes
5answers
96 views
How to organize this loop in a more elegant Pythonic way
So I have a function which reduces some dataset, and returns the number of elements removed. I have to stop applying it once the number of items reduced during the function's operation is zero. ...
3
votes
3answers
366 views
Help with do/while and switch statements in C
Trying to compile a simple switch statement with 5 choices. 1-4 produce calculations and output while #5 exits the program. I made a do/while loop so if choice 5 is entered the program will end. I get ...
3
votes
3answers
321 views
C++ Switch Statement inputs
I am writing a C++ program that prompts the user for an input and then keeps track of how many times that input is entered. I am currently using a do-while loop and a switch statement. The part I am ...
3
votes
3answers
196 views
Ending a for loop by pressing 'q'
I have been doing a project for my java class. For the project I have to have the user enter input and calculate their body mass index and body surface area the program is supposed to remain running ...
2
votes
2answers
43 views
T-SQL : use an array like in a while loop
I want to loop a array of chars in a WHILE loop (with only two values : 'C' & 'P') and use this variable in a SQL statement.
PSEUDO CODE:
WHILE SELECT 'C' UNION SELECT 'P'
BEGIN
SELECT @Var ...
2
votes
1answer
91 views
Javascript / JQuery random images repeat issue
I have an image gallery which pulls in random images from the folder images/flip_images/. The files are names as a number then .jpg, e.g. 0.jpg, 1.jpg etc. There are 14 images which it can choose ...
2
votes
3answers
110 views
Java do loop - string cannot be resolved
Working on a simple dice rolling game using programmer defined methods in Java. Since I know the program needs to run at least once and then ask if the player wants to go again, I elected to use a ...
2
votes
1answer
263 views
do .. while() in Groovy?
No 'do ... while()' syntax as yet.
Due to ambiguity, we've not yet added support for do .. while to Groovy
(source)
Then what would be the best way to do something like this:
def numRead = ...
2
votes
5answers
117 views
Python: do r = random_stuff() while not meets_condition(r)
I often have to randomly generate stuff with certain constraints. In many cases, it's quicker to ignore the constraints in generation, check if they are met afterwards and redo the process otherwise. ...
2
votes
2answers
215 views
Bash Shell Do While Loop Infinite loop?
Basically this is my code:
bay=$(prog -some flags)
while [ $bay = "Another instance of this program is running, please exit it first" ]
do
echo "Awaiting Access to program"
do
.....
I have program ...
2
votes
5answers
113 views
0 in the while statement
i have one question and please help me.i have read on web page somthing about do while statement,different is that ,in while there is written 0,not boolean condition
do{
// do some ...
2
votes
4answers
180 views
Why is this 'if' statement looping?
Hey guys I'm writing part of a code for a project and I'm stuck on one thing. If this is something good coders figure out on their own at some point (as I'd like to become a good one, week five with ...
2
votes
4answers
93 views
bash file reading, while loop
I'm sorry if this has been answered but since I'm not positive what exactly is the problem (among several possibilities) I haven't been successful in my searches.
What I want to do is take label ...
2
votes
6answers
141 views
Can I rewrite this do-while loop as a foreach loop?
Is there a way to write this code more elegantly with a foreach loop? The "create a new entry" logic is thwarting me, because it needs to execute even if pendingEntries contains no items.
ItemDto ...
2
votes
1answer
947 views
Fortran 95 Do-While Loop Not Exiting on False Condition
Here is my code:
program change
integer:: amount, remainder, q, d, n, p
amount = 47
remainder = amount
print*,remainder
q = 0
...
2
votes
6answers
368 views
Which one is better? do{} while(0); or goto xy; [closed]
I've two pieces of code:
A do while loop:
do
{
errorflag=0;
...
if(cond1)
{
errorFlag=12;
break; // Error Conditions
}
.
. // Processing
...
2
votes
6answers
379 views
Is “}while(0);” always equal to “break;}while(1);”?
I have compared gcc assembler output of
do{
//some code
}while(0);
with
do{
//some code
break;
}while(1);
The output is equal, with or without optimization but..
It's always that way?
...
1
vote
2answers
144 views
What is the use of do{}while(0)? [closed]
Possible Duplicate:
Why are there sometimes meaningless do/while and if/else statements in C/C++ macros?
What's the use of do while(0) when we define a macro?
how does do{} while(0) work ...
1
vote
3answers
118 views
Detect first pass through a do-while
I have a do-while loop that needs to log a message once (so it doesn't clutter the log) each time its status (e.g. pass/fail) changes, but still has to do other things each time it goes through the ...
1
vote
4answers
94 views
Displaying list box items using loop
I am using do-while loop for getting each items for the list box.
My code sample is like below:
do
{
string nameOfPersonFromWeb;
//Here is code that do some ...
1
vote
4answers
83 views
I think do while is getting into infinite loop. or the array. (run time error)
it's a basic program for array of pointer to objects.
#include <iostream>
using namespace std;
class city
{
protected:
char *name;
int len;
public:
city()
{
len=0;
...
1
vote
2answers
71 views
How can i convert this Do While loop into another sort of loop, a while loop?
public void humanPlay()
{
if (player1.equalsIgnoreCase("human"))
System.out.println("It is player 1's turn.");
else
System.out.println("It is player 2's turn.");
System.out.println("Player 1 ...
1
vote
3answers
59 views
do while loop in php
working on a simple counter program
when button is pressed it adds 1
when other button is pressed it minuses 1
once variable reaches 10, i need it to set the variable to zero
i'm completely new to ...
1
vote
5answers
129 views
How to run 2 times of do-while loop only?
How to modify the code below to become the user only can enter 2 times wrong PIN? After 2 times wrong PIN, the program will auto exit.
String user = "Melissa";
int pin = 123456;
int pin2;
...
1
vote
2answers
140 views
Return an error when typing neither Y/N
How do i return an error and ask the question Do you want to try again (Y/N)? again when the user entered neither Y/N as an answer?
import java.io.*;
public class Num10 {
public static void ...
1
vote
3answers
85 views
Matching Start / End Profiling Calls
I'm currently implementing a profiling system into an application.
I have a two macro functions which are defined based on a compiler flag (NDEBUG). When NDEBUG is not defined, these two functions ...
1
vote
2answers
105 views
Row won't increase in do-while loop
I'm having some problems with the php script below that I'm currently working on. What I am trying to do is make a list with 5 events that are being shown ordered by date.
In my database I have a ...
1
vote
2answers
298 views
Why does “do while” require a semicolon at the end? (C/C++/Java/etc) [closed]
Possible Duplicate:
In C/C++ why does the do while(expression); need a semi colon?
I understand the structure of a "do while" loop compared to a "while" loop. What I don't understand, is ...
1
vote
1answer
259 views
Do..While…Loop Result
What should the results be of the following pseudocode:
Initialize counter to 10
Do while counter < 100
Display counter multiplied by 2
Add 10 to the counter
End loop
I'm thinking: 20, 60, ...
1
vote
3answers
159 views
do-while condition without declaring a separate variable
I have a do-while loop inside a function that resembles something like this:
do
{
// a bunch of stuff
if (something < something else)
{
return true;
}
else if (stuff ...
1
vote
3answers
291 views
Do-while instead of if-else
I've been examining some PHP code today and I've noticed the usage of do-while with breaks instead of if-else. What are the advantages of it? Code readability? Speed? Anything else?
1
vote
3answers
114 views
Do-while question java
My program will provide information on buildings, which is stored in an online Oracle database. I got it to ask the user to enter the building number and then run and display the results of several ...
1
vote
2answers
5k views
Do while loop in SQL Server 2008
Is there any methode for implement do while loop in SQL server 2008?
1
vote
5answers
159 views
Doubts in a code using do while loop
This is a small piece of code shown below which is using do while loops.
I really dont understand the unexpected behaviour i see when i execute this code.This code shown below uses a do while loop ...
1
vote
8answers
725 views
Why use a “do while” loop?
I've never understood why using a do while loops is necessary. I understand what they do, Which is to execute the code that the while loop contains without checking if the condition is true first.
...
0
votes
4answers
65 views
play again function c
I have a homework assignment that basically takes user input to create a golf game, asking how many holes to play, what par each hole is, and randomly generates what the person got on that hole, and ...
0
votes
6answers
131 views
stuck in a infinite do while loop
I am trying to make a simple guess my number game in c++ but the computer need to guess my number. But the problem is that I am stuck in this infinite loop. I am just a beginner so it's a really basic ...
0
votes
2answers
35 views
trial and error do while statement in iOS
I am new to iOS programming/objective c, I am trying to do an iterative trial and error calculation and I am stuck. Ordinarily this code would have worked in excel VBA so I'm not sure how to overcome ...
0
votes
4answers
62 views
Problems with do while loops, Java
I'm prompting the user to input an integer and if they don't enter a proper integer (as a reference to an option) then I would like the prompt to show up again until they do.
So far this is the code ...
0
votes
12answers
119 views
Java do while not 0 or 1
Ok. So I am a total beginner at Java. But why does this loop never end, even if i type in 0 or 1.
do {
//Ask user to enter 1 or 0
System.out.print("Enter 1 or 0: ");
upOrDown = ...
0
votes
0answers
52 views
Refreshing label each time a label is filled with text
I am using bing translation TranslatorService to translate the text and display it on the label.
I have tried to use the update panel like below:
<asp:UpdatePanel id="UpdatePanel1" runat="server" ...