A while loop is a control structure used in many languages to loop over a set of instructions as long as a particular condition is met.

learn more… | top users | synonyms (2)

0
votes
2answers
29 views

Assignment Within the Check of a While Loop

I'm just learning c++ and was trying out a basic summation program using while loops and #include <iostream> using std::cin; using std::cout; int main(){ int userIn; int runningSum =0; ...
3
votes
4answers
55 views

Using a while loop as a wait in python

I have done this in C/C++ before where I have a while loop that acts as a wait holding the program up until the condition is broken. In Python I am trying to do the same with while(GPIO.input(24) != ...
0
votes
6answers
46 views

Exit a while loop Java

I can not get this loop to stop even though I set the count variable = to false. And it won't go to the next method called in the Main class. Any help would be greatly appreciated. Main Class public ...
0
votes
2answers
18 views

Asking User Multiple Times for Input in Java

So far I have this: package CashRegister; import java.util.Scanner; public class CashRegister { public static void main(String[] args) { Scanner askPrice = new Scanner(System.in); ...
1
vote
8answers
49 views

PHP: Why is there an additional blank line of output from a while loop?

Here is the PHP code: $i = "1"; while ($i <= 13) { echo "i is: $i" . "\n"; $i++; } This is the output from the command line on Linux Bash shell: i is: 1 i is: 2 i is: 3 i is: 4 i is: 5 ...
0
votes
3answers
65 views

while loop in python issue

I started learning python few weeks ago (no prior programming knowledge) and got stuck with following issue I do not understand. Here is the code: def run(): count = 1 while count<11: ...
-5
votes
0answers
18 views

PHP cycle> List of MySQL> numerical order [closed]

Good day. Single cycle while I display data from a table contestants. And I need to in the statement that the order was the same when the same total field. For example:           1 _____ ...
2
votes
3answers
69 views

Simulate game of craps

I'm trying to implement a function craps() that takes no argument, simulates one game of craps, and returns 1 if the player won and 0 if the player lost. Rules of the game: the game starts with the ...
1
vote
2answers
52 views

Switch-statement inside a while-loop which loop infinitely

Here is my code: int main() { int nothing; string name; int classnum; bool classchosen; string classname; cout << "Welcome adventurer, your journey is about to ...
0
votes
2answers
33 views

How to wrap my columns properly with div's?

I have a following code to wrap my columns inside div's: <div id="blogwrapper"> <div id="blogs"> <?php //enable pagination on static pages and blog pages $col = 1; ...
4
votes
2answers
43 views

Stuck on an error in Python 3 (exceptions, loop)

So what I'm trying to do here is that if you put in a string instead of an integer, you go back to the start But for some reason, the program just stops when you put in a string while True: try: ...
1
vote
1answer
35 views

MYSQL Why While loop returns first record two times?

I have two records in my DB and i want print them out. So i wroted this: <?php $resDB = mysql_connect("localhost", "root", ""); mysql_select_db("xe", $resDB); $aco = mysql_query("SELECT * FROM ...
1
vote
2answers
40 views

while loop less than symbol '<' raising error in Ruby (RubyMine)

I am adding all numbers that are multiples of 3 and 5 less-than 1000. This is my error: in `multiple_sum': undefined method `<' for nil:NilClass (NoMethodError) Here is my code: def ...
0
votes
0answers
36 views

While statement Method 'Range' of object error

I get this error from the 'While Not' line in the code below: DataSheet.Range(Cells(Curli... = <Method 'Range' of object '_Worksheet' failed> Dim CurLine As Integer CurLine =Worksheet Set ...
-2
votes
3answers
57 views

I cannot figure out this while loop [closed]

I am having a little trouble with the code below, basically I am just practicing with loops and thought about making a little game to brush up...however I am a little stumped as to why the while loop ...
1
vote
2answers
76 views

boolean variables for loops vs conditions

Here is my code: int main() { int input; bool isZero = false; while (!isZero) { ... if (0 == input) { isZero = true; } else { isZero = false; } } ...
3
votes
5answers
113 views

Exit while loop in Python

In the code below, I'd like the while loop to exit as soon as a + b + c = 1000. However, testing with print statements shows that it just continues until the for loops are done. I've tried while True ...
-1
votes
1answer
62 views

Quantity for each item select to be posted and written to a mysql database table

$disabled in the below code repeatedly gets overwritten for example: Item 1 = Quantity 3 Check box = True Item 2 = Quantity 5 Check box = True Item 3 = Quantity 1 Check box = False The values ...
-2
votes
0answers
30 views

Create a Visual Basic Program with EMIRPS [closed]

Create a VIsual Basic Program - Code User Requirements: An Emirp is a prime number whose reversal is also a prime. Write a visual Basic program that computers and displays the number of emirps ...
0
votes
2answers
31 views

Adding database column to JComboBox

I've searched around for the answer to this, but to no avail. When I compile this, it just returns the last row of my table in the database and not a list of the entire column as I expect. I believe ...
0
votes
0answers
41 views

for loops with if statements vs for loop while loop

I´m trying to build a descendent gradient method to get MLE estimation; I saw several forums with questions about if statements, while loops,… but I still get problems with results; can someone please ...
-6
votes
4answers
62 views

Java while 2 conditions

I need to have something like this, but now sure if possible: a while with 2 conditions and when first condition is false I do not want the second condition to be considered, so I want the while to ...
1
vote
4answers
129 views

while loop - nothing happens after first input

int option; int invalidOption2 = 0; while(invalidOption2 == 0){ try{ cin>>option; if(!cin){ error("invalid input"); } if(option<1 || ...
1
vote
1answer
138 views

while(1) loops infinitely executes its first statement and does not go to the next statement

I am writing a code in which there is while(1) loop. Inside while(1) loop there is a message box and then recvfrom() function which according to my understanding must block in call to recvfrom() until ...
-3
votes
0answers
41 views

C++ conversion to C# two errors [closed]

Just when I think I'm done converting from C++ to C# I run into this. I have two issues below that I can't figure out how to convert. The first is the while(*p) and next is p += (strlen(p) + 1); Any ...
0
votes
0answers
39 views

Reading from FIFO(named pipe) in While loop without body

im trying to make a tic tac toe game with server-client in c. On the server side i have to read from FIFO(named pipe) 2 pids. so i made a loop that run until the read (from fifo) return value ...
-8
votes
3answers
39 views

How to rewrite ArrayList in opposite direction [duplicate]

I have a ArrayList and I need to rewrite it in the opposite direction. How to do it? List<Posts> viewList = new ArrayList<Posts>(); viewList = viewLogic.getPostsList(username);
-2
votes
3answers
61 views

Why won't this exit out the while loop? [closed]

I'm trying to exit outside this while look, so my script can post to Wordpress.com blogs. However, even when I try to use break; inside the if statement, the loop continues. This function starts up ...
0
votes
1answer
56 views

Mysql query to get a Mutual friend count and display it in a table in php

I have a table called myfriends with 2 columns: friend_id1 friend_id2 When someone is a friend of some there will be two records. For example lets take 4 members: 1000, 1001, 1002 and 1003. if ...
0
votes
1answer
23 views

Append Datatable in VB

I am developing windows app in vb where i want to append values in datatable withen a while loop as given below. If hscode <> "" Then da1 = New OleDbDataAdapter("select * from [" ...
0
votes
2answers
55 views

Displaying MySQL table in PHP

I have a quick question. I have the while statement below that is working but is printing everything in the table twice. I'm new at PHP and MySQL and don't have any idea why. Can someone help point ...
0
votes
1answer
72 views

a loop to make a medication adherence variable in R

I am working with prescription data and want to generate a summary variable which measures an individuals adherence to a drug over a given period. This variable is called the Proportion Days covered ...
0
votes
1answer
53 views

Leibnitz Method for Pi Program

I am making a program to prove Leibnitz method for computing PI. (pi/4) = 1 - 1/3 + 1/5 - 1/7 + 1/9 - 1/11 + ... I took a very interesting approach to this and I am just wondering if there is a much ...
0
votes
2answers
54 views

Compare, extract and remove from a string array PHP

I am an PHP noob that has been working for quite a while with the smallest of tasks. Im trying to create a while loop that is alive until it finds a match, the strings that should match is two random ...
2
votes
3answers
95 views

While loop python

I am new to python and am having problems seeing why this code does not work. I would like it to return [10,122,2]. close = [5000,5010,5132,5134] def difference(): x = 0 data = [] while ...
-2
votes
2answers
64 views

Can't set the correct value in this while loop

I have translated this code to VB.NET which is a function to check if a image is grayscale. private static unsafe bool IsGrayScale(Image image) { using (var bmp = new Bitmap(image.Width, ...
0
votes
0answers
19 views

PHP & mySQLi - while mysqli_fetch_array not echoing result

trying to echo the rows. i dont get any errors, but it works if i do the second part. <?php $result = mysqli_query($db_connect, "SELECT * FROM items") or die ("Query is invalid." . ...
0
votes
5answers
83 views

Why is 'continue' statement ignoring the loop counter increment in 'while' loop, but not in 'for' loop?

Why does it tend to get into an infinite loop if I use continue in a while loop, but works fine in a for loop? The loop-counter increment i++ gets ignored in while loop if I use it after continue, but ...
0
votes
2answers
29 views

PHP While wont return first row

got a problem with my while statement, it will not display the first row & I have no idea why, any help would be appreciated. <?php $user = $_SESSION['username']; $result = ...
1
vote
1answer
75 views

For loop isn't printing correct “.”

What I am trying to do is have it take a java file that look like this public class test1 { public static void main ( string[] args ) { System.out.println( "This is Test 1." ); } } And it is ...
-2
votes
4answers
88 views

Reload main in c program

I have a small C program that calls a routine. When the routine fails i want to run the program again, not quit. If I don't put the return 0 in the main I get an infinite loop in the while loop ...
1
vote
6answers
65 views

while loop nested in a while loop

I was using a nested while loop, and ran into a problem, as the inner loop is only run once. To demonstrate I've made a bit of test code. #include <stdio.h> int main(){ int i = 0; int j = ...
0
votes
1answer
32 views

Echo all results from sql join when using group by

I have the following query which I run via PHP: select {$tableProducts}.*, {$tableImages}.* from {$tableProducts} left join {$tableImages} on {$tableImages}.product_id = ...
1
vote
1answer
27 views

Looping elegantly the message SOS in Arduino LED blinks

I am trying to make my Arduino blink "SOS" in Morse Code as my first real programming project ever. I have succeeded in doing so, however now I would like to more efficiently write the code. Here is ...
0
votes
0answers
39 views

mysql view: count and for loop in the query

I'm working with mysql. Need to create a view where the query must include some MIN(case when then else end) statements. I don't know how many Case statements do I have to write, because this ...
1
vote
2answers
27 views

how do i add auto numbering with each fetching row?

how do i add auto numbering with each fetching row ? i want auto add new number as serial number with each fetching rows from mysql databse? <?php $i=0; $query=mysql_query("SELECT * FROM cart ...
0
votes
0answers
17 views

Firefox ONLY ignores javascript code snippet

This snippet of code looks for certain text in table rows and if it finds it, it increments the number between the () by 1. For example if it finds NEW BLANK LETTER (3), the next time this function is ...
2
votes
2answers
20 views

Bash: Odd behavior reading from STDIN in a loop

I observe a behavior that I don't undrestand and would like someone to shed some light on it. I have two scripts, both read from STDIN. Reading a sequence of numbers from keyboard ( 1 enter 2 enter ...
0
votes
1answer
28 views

Fetch all fields from all rows - MYSQL

I understand this could appear alarming but bear with me. I need to echo every field in every row in a table. This is only an example - I have removed the HTML wrapped around it to improve ...
-1
votes
1answer
78 views

While and loop in R [closed]

I am attempting to sample each number of markers( i.e=2), only maf =1 considering maf=0 for count. I tried this script but is not worked: #Example file, choose each 2 markers, with only maf=1 ...

1 2 3 4 5 68