Tagged Questions

6
votes
6answers
610 views

Java do while, while

what behaviour can I expect when I run this code: do while(testA) { // do stuff } while(testB); Will it behave like: do { while(testA) { // do stuff } } while(testB); ...
5
votes
9answers
1k views

do while loop in C#

Hi I am new to programming in C# can some one give me an example of how to write do while loop in C# EDIT: FYI I am a VB.NET programming trying to make the move to C#, so I do have experience with ...
2
votes
4answers
243 views

C# do while loop start stop

I am trying to make a stop button for this loop but it runs indefinite, nothing happens when i click button 2 bool dowhile = false; private void button1_Click(object sender, EventArgs e) { do ...
2
votes
1answer
319 views

create index in SAS using do loop

Say I have a set of data in this format: ID Product account open date 1 A 20100101 1 B 20100103 2 C 20100104 2 A 20100205 2 D 20100605 3 A 20100101 And I want ...
1
vote
2answers
181 views

Do until EOF loop with records in VB 2010

I have a program below that doesn't seem to be doing what I want it to do. In general, the pseudocode is: enter the number of miles (miles.text), click button, check: is the mileage entered equal to ...
1
vote
2answers
120 views

Fortran: Short form for “do loop”

Hey there, I have a code like that: write (filehandle,'(5e14.6)') & (((my_array(i,j,k,1),i=istart,iend,istep),j=jstart,jend,jstep),k=kstart,kend,kstep) is this a short form for a ...
1
vote
1answer
232 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
12answers
219 views

What are your tips for keeping track and avoiding bugs in loops?

I just found ... AGAIN ... a real time wastage bug as follows for (int i = 0; i < length; i++) { //...Lots of code for (int j = 0; i < length; j++) { //...Lots of code } } ...
0
votes
5answers
124 views

This `do..while` loop isn't working

int sc1,sc2,a=0,b=0; do { printf("Give the scores\n"); scanf("%d %d", &sc1,&sc2); //=============================================== if (sc1 > sc2) a+=1; else if ...
0
votes
4answers
62 views

Simple Java Query - Getting a Result from a Integer

I have been set an assignment where I must find the average of a list of positive numbers enterd by the user, the amount of numbers entered is unknown. So far I have got the program to add all numbers ...
0
votes
1answer
70 views

Rotating do while PHP

Well I have unusual question I think. I am making a web site and the products must be shown as a line I will past a link for better understanding. ...
0
votes
5answers
296 views

Is it possible to have a while loop in c++ that makes the check in the middle of the loop instead of the beginning or end?

I want to have a while loop do something like the following, but is this possible in c++? If so, how does the syntax go? do { //some code while( expression to be evaluated ); // some ...