A language construct typically used to bypass the rest of a loop and return to the beginning for the next iteration.

learn more… | top users | synonyms

1
vote
4answers
32 views

Continue case in switch

I have following code: switch(true) { case (something): { break; } case (something2): { break; } case (something3): { ...
0
votes
1answer
33 views

Jinja2 template from Flask is failing to render CONTINUE statement

I am trying a simple continue inside a for-loop in Flask with jinja2 {% for num in range(0,10) %} {% if num%2 == 0 %} {% print num %} {% else %} {% continue %} {% endif %} and i get ...
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
3answers
133 views

Euler #4 in Python

A palindromic number reads the same both ways. The largest palindrome made from the product of two 2-digit numbers is 9009 = 91 × 99. Find the largest palindrome made from the product of two ...
0
votes
0answers
35 views

PHP Custom Error Handler Return Continue to While Loop

I'm using a SQL query to retrieve an array with IP addresses ($ipaddr). I then loop through the array calling 5-6 snmp3_get functions for each IP address. If any of the snmp3_get command throws an ...
10
votes
3answers
2k views

Is it posible to use 'yield' to generate 'Iterator' instead of a list in Scala?

Is it posible to use yield as an iterator without evaluation of every value? It is a common task when it is easy to implement complex list generation, and then you need to convert it into Iterator, ...
-3
votes
0answers
28 views

Find last line after continue statement in looping [closed]

I need to find the last line after "continue" statement in looping for debugging, Here is example of code: if($disactive>0){ continue; } print last-continue-line; So any body can solve my ...
0
votes
2answers
25 views

how to continue the loop inside the if else case?

final static int arrayLength = 1000; //maximum array size static float[] productPrice = new float[arrayLength]; //stores the prices of products static String[] productName = new ...
6
votes
4answers
895 views

Why is this labeled javaScript continue not working?

I am using this code to weather some circles are overlapping: iCantThinkOfAGoodLabelName: x = genX(radius); y = genY(radius); for(i in circles) { var thisCircle = circles[i]; ...
0
votes
2answers
52 views

Continue execution on Exception

Below is the script I want to execute. The issue here is once an exception occurs it stops executing, I used continue in the catch block but that did not work. How do I get it working even after an ...
-1
votes
2answers
79 views

C# Webclient POST [duplicate]

I am learning c#, and my first app is Manga Reader. I have problem with "click" Continue via Webclient (or do something, which will give the same results) string URI = ...
0
votes
0answers
66 views

While loop with try catch java

So for some reason, in my while loop there is a try catch and when the catch fires, for some reason the code after the catch block is still executing with a continue statement inside the catch block. ...
37
votes
20answers
36k views

Difference between break and continue statement

Can anyone tell me the difference between break and continue statements?
0
votes
0answers
119 views

Why are “break” and “continue” statements considered bad programming in loops? [closed]

I have been told that break and continue statements should be avoided in loops since they are considered evil. From which standpoint can the usage of such statements be considered bad ? Readability ...
13
votes
6answers
7k views

Applescript equivalent of “continue”?

I have a simple 'repeat with' in an AppleScript, and would like to move on to the next item in the "repeat" conditionally. Basically I'm looking for something similar to "continue" (or break?) in ...
0
votes
1answer
64 views

PHP: In forEach, stopping execution when a condition is reached, but continuing later

Suppose I have something like this: $count = 0; foreach($CourseDetails as $course_line) { print "<tr><td>{$course_line['class_code']}</td> ...
-5
votes
4answers
195 views

How to use the statement continue in while loop?

Lets take the below code snippet. int i = 0; while ( i <= 10 ) { System.out.println(i); if ( i == 8 ) { continue; } i++; } What ...
0
votes
2answers
80 views

Applescript - Call an Error and continue

I'm trying to trigger an error on purpose and then continue my script. Error number -2700 triggers an "Unkown Error" error but it also ends the script with the returning value of -2700 instead of ...
1
vote
3answers
3k views

Continue an interrupted download on iPhone

I use NSURLConnection to download large files from the web on iPhone. I use the "didReceiveData" method to append data to a file in the Documents folder. It works fine. If the download is interrupted ...
6
votes
5answers
3k views

Example use of “continue” statement in Python?

The definition of the continue statement is: "The continue statement continues with the next iteration of the loop." I can't find any good example of code. Could someone suggest some simple cases ...
2
votes
2answers
380 views

Labeled-break/continue in C# or Fortran 95 loops?

I've been tasked in a homework assignment with converting a loop in C# into Fortran 95. outerLoop: for(row = 0; row < numRows; rows++){ for(col = 0; col < numCols; col++){ ...
-8
votes
2answers
183 views

continue statement within a loop [closed]

main() { int i=0; switch(i) { while(1) { case 0: i=1; printf("1"); break; }continue; default: ...
0
votes
1answer
55 views

Is there a way to set an option that will cause a PostgreSQL script to continue even if there are errors?

Is there a command to set an option that will cause a PostgreSQL script to continue even if there are errors? eg sometimes when I have a lot of data from a spreadsheet to insert into a table, I use a ...
0
votes
2answers
92 views

Why is this else: pass needed for processing to continue? [closed]

Can someone explain why the else:pass shown below is needed in order for the rest of the code (the final print 'processing... statement) to be executed? Note the print in the else was put there just ...
0
votes
0answers
86 views

Don't get names

I've got a problem with getting names from a file. Structure of the file is: a0 0 0 : N a1 0 0 : N a100 0 0 : N And it goes and goes. ...
0
votes
0answers
88 views

How to continue the program?

There are some files that I need to parsing into the program. But when I try to do this, my program crashes. The first problem is about continuing program when the first file ends. How to make a ...
-1
votes
1answer
205 views

Continue the loop if a Fatal Error is found in a Facebook publish stream script

I have the following PHP code: require 'facebook.php'; $facebook = new Facebook(array( 'appId' => 'XXXX', 'secret' => 'XXXX', )); $ids = array('1234','5678','1348','1476'); foreach ($ids ...
0
votes
3answers
640 views

How to rewrite Java [continue <label> and break <label>] in C#?

In Java it's written like this.. when I was porting this code... realizied there is no such thing as break <label> and continue <label>. I know those commands were not included because ...
0
votes
2answers
215 views

Countdown timer stops running in background

I have implemented a countdown timer in an application of mine. It runs in the background fine and dandy, but when i use advanced task killer, it stops the timer and the only way to restart it is to ...
0
votes
2answers
102 views

php continue - alternative way?

I just started learning php and I have to do something like this which I got it working but I just have a few questions I want to ask for alternate way of doing but eh first of all the br/ is suppose ...
-2
votes
4answers
113 views

rewrite c expression without continue and break

In a school exercise (on paper) i've this question: 5) rewrite the code without using continue and break: for (i = 0; i < N; i++) { scanf("give me an int %d", & a); if (a < 0) { ...
1
vote
2answers
576 views

syntaxError: 'continue' not properly in loop

I have been struggling with this error for a while now and there seems to be different opinions regarding why the interpreter complains about the 'continue'. So I would like to provide the erroneous ...
0
votes
5answers
56 views

Looping through several functions in PHP

Basically I want to achieve such functionality that 5-10 functions are executed in a row (like normally). However, I want the script to go back several steps back (ex. from 5th back to 3rd) and ...
0
votes
2answers
642 views

Smarty: cannot recognize continue tag

all im trying to do is to use the simple continue tag but it keeps giving me error like this: string(145) "Smarty error: [in module_db_tpl:onlyimage4;image_detail line 26]: syntax error: ...
-6
votes
1answer
221 views

Using `continue` keywoard in a switch nest inside a foreach loop [closed]

I have the code below (which actually is much longer than you see!) foreach (SensorPair sensor in _sensorPairs) { sensorByte = (byte) sensor.Sensor; if (!packet.Contains(sensorByte)) ...
0
votes
2answers
3k views

PHP continue statement

Hello Guys When reading a PHP book I wanted to try my own (continue) example. I made the following code but it doesn't work although everything seems to be ok $num2 = 1; while ($num2 < 19) ...
0
votes
4answers
192 views

break and continue in function

def funcA(i): if i%3==0: print "Oh! No!", print i break for i in range(100): funcA(i) print "Pass", print i I know script above won't work. So, how can I write if I ...
-2
votes
5answers
87 views

What is this “continue” example doing in Python?

So I am in the process of learning python and I ran into this code that is confusing me. var = 95 for items in range(0,100): if var < 10: continue elif var == 10: ...
1
vote
3answers
87 views

PHP break, continue in 2 loop

I'm a little confused about breaking out and continuing out of loops etc. I have 2 SQL queries that match user priveleges against the user's actual priveleges with the new ones put it. However, if ...
0
votes
2answers
104 views

Break vs Boolean?

My programming fundamentals teacher had said in one of her classes that using the "break" or "continue" keywords is less efficient then using a boolean to exit a loop. I wrote and ran a program ...
5
votes
1answer
150 views

Do not continue Javascript for-loop until specified

I need to pause a for loop and not continue until I specify. For each item in the array that I'm looping through, I run some code that runs an operation on a separate device, and I need to wait until ...
0
votes
2answers
82 views

skip excel lines with python

I am making a Python script that parses an Excel file using the xlrd library. What I would like is to do calculations on different columns if the cells contain a certain value. Otherwise, skip those ...
0
votes
1answer
125 views

php if statement with continue works the other way around as I would expect

So I've timestamps: Start: 1353441600 Cutoff: 1353736800 (start < cutoff) Start: 1353790800 Cutoff: 1353736800 (start > cutoff) I have php statement: if ($eventStarted < $todaysCutoff) ...
0
votes
6answers
137 views

How to refactor this while loop to get rid of “continue”?

I have a while (!Queue.empty()) loop that processes a queue of elements. There are a series of pattern matchers going from highest-priority to lowest-priority order. When a pattern is matched, the ...
-1
votes
1answer
344 views

is there a way in PHP to restart a loop in a foreach, or change the test value in a switch?

if i'm looping over an array, and while in the middle of one of the loops i discover some small issue, change ...something..., and need to try again ... is there a way to jump back to the top of the ...
2
votes
4answers
838 views

Java continue at the end of if

I have some example code from a book and the author is always using an continue at the end of an if. Example: int a = 5; if(a == 5) { // some code continue; } Now for me this doesn't make any ...
0
votes
0answers
27 views

Problems with having system bypass missing file using StandardError

I have a small program that executes a multi-program update. It basically waits for the program to run and exit before moving on to the next updater. Problem is that I want it to give an error ...
0
votes
2answers
717 views

How to continue executing code after calling ShowDialog()

the Form.ShowDialog() method causes the code to be halted until the newly called form is closed. I need the code to continue running after the ShowDialog() method is called. I googled and read about ...
0
votes
1answer
272 views

continue cannot be used outside of a loop (it isn't outside actually)

I dont understand why continue causes error here public void clear() { log.debug("Clearing hash"); // wow! while( hash.size()>0 ) { for(Map.Entry<Node,Node> entry : ...
2
votes
1answer
247 views

shell script : nested loop and continue

while [condition] do for [condition] do if [ "$x" > 3 ];then break fi done if [ "$x" > 3 ];then continue fi done In the above script I have to test "$x" > 3 ...

1 2 3