A language construct typically used to bypass the rest of a loop and return to the beginning for the next iteration.
0
votes
1answer
21 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
81 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
129 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
33 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 ...
-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
23 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 ...
0
votes
2answers
51 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
67 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. ...
0
votes
0answers
116 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 ...
0
votes
1answer
61 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>
...
0
votes
2answers
79 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 ...
-8
votes
2answers
178 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
49 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
90 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
87 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
200 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
2answers
206 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
100 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 ...
-5
votes
4answers
186 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 ...
-2
votes
4answers
112 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
546 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 ...
-6
votes
1answer
211 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
4answers
186 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
86 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
103 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
146 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
121 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
135 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
327 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
778 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
683 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
259 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 : ...
0
votes
1answer
78 views
Javascript - IE8 Ignoring Condition
My question:
Why is this condition being ignored in IE 8?
if (dynCheck[0].innerHTML == 'Empty' || dynCheck[0].innerHTML == "")` {continue}
More details:
I have a loop that is storing an array of ...
2
votes
1answer
236 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
vote
5answers
175 views
break; then continue; in java [closed]
I have a code that takes a value from a button and then outputs something.
If I don't use a break; and I press on the left button, it will output thousands of left. The same for enter and right.
I ...
0
votes
2answers
121 views
Break-continue without auxiliary boolean variable?
In Java, I have such code:
boolean contains;
for (int i = 0; i < n; i++) {
// get the current matrix value
t = A[i][j];
// check if it has been already considered
contains = ...
1
vote
3answers
138 views
Continue Statement in a Java Function
I want to create logic such that: if s2 is null the debugger skips all the complex string manipulation and returns null instead of s1 + s2 + s3 as seen in the first if block. Am I wrong somewhere?
...
-2
votes
3answers
88 views
Using 'continue with label' to reach an inner for loop [closed]
while (true) {
try {
//create ImportantObject
LoopToGoTo:
for (int i = 0; i < Limit; i++) {
//method in here throws the exception
...
-3
votes
2answers
136 views
How can i break a foreach statement, echo something else and then continue
I am getting two different arrays arrays of data from MSQL database, first array from my blog post table containing 15 rows/items, and the second array from advert table containing 3 rows/item. i want ...
1
vote
2answers
2k views
Make Magento “Continue Shopping” button redirect to the last-added-to-cart product's category
The continue shopping button is not working as I wish on shopping cart page.
When I click the button, then go to home page.
I want go to prev category page.
0
votes
1answer
23 views
Is there any way to skip migrations which are failing?
I want to run migration on my server for ruby on rails project but I am getting this kind of error with postgres-
PGError: ERROR: relation "last_message_read" already exists
: CREATE TABLE ...
1
vote
3answers
133 views
for loop in va_list procedure, continue used aimlessly(?) K&R
Good afternoon! I have some doubts about following code.
[1] What does the middle condition in the for loop mean? ; *p; and ; *sval; - reaching an end of input string? If yes, how is it determined?
...
0
votes
5answers
951 views
vb.net continue for inside a for each
i have a for each loop inside a for loop, the for each loop checks if a value in some column in the current row exists in an array, if it exists i want to do whats in the for loop and if it doesnt ...
5
votes
4answers
390 views
Why are “continue” statements bad in Javascript?
In the book Javascript: The Good Parts by Douglas Crockford, this is all the author has to say about the continue Statement:
The continue statement jumps to the top of the loop. I have never seen ...
1
vote
4answers
153 views
C# for continue inside foreach [duplicate]
Possible Duplicate:
continue and break with an extended scope
i have one problem. I don't know how to call continue for "for" inside foreach.
Code:
for(int i = 0; i < ...; i++)
{
...

