-3
votes
3answers
65 views
For loop in while loop
Hi, can I put a for loop in while loop? For example:
while($end = 1)
{
for ($i = 0; $i < count($match); $i++)
{
$mathcas = $match[$i][1];
}
}
Thanks. :)
0
votes
2answers
104 views
Replay tic tac toe game
So I am trying to program a way to replay a tic tac toe game after someone wins, loses, or ties.
So basically my attempt to get replay to work, doesnt work. If player 1 won and I t …
0
votes
1answer
89 views
java nested while loop using readline
I'm confused. I'm trying to loop though 2 files looking at the first token in every line of the first file and comparing it to the third token of every line of the second file. Her …
0
votes
3answers
71 views
problem with jquery and ie and loading images
I have a web page that consists of three parts, script, style and body. the body is just tables of images - the problem is that when you first load the site all the images load on …
7
votes
7answers
297 views
JavaScript - Are loops really faster in reverse…?
I've heard this quite a few times. Are JavaScript loops really faster when counting backward? If so, why? I've seen a few test suite examples showing that reversed loops are quicke …
2
votes
3answers
344 views
Timer & TimerTask versus Thread + sleep in Java
I found similar questions asked here but there weren't answers to my satisfaction. So rephrasing the question again-
I have a task that needs to be done on a periodic basis (say 1 …
0
votes
3answers
396 views
Python: Mixing files and loops
I'm writing a script that logs errors from another program and restarts the program where it left off when it encounters an error. For whatever reasons, the developers of this prog …
0
votes
5answers
175 views
PHP round numbers, add decimal numbers
I'm using a simple loop to echo back some numbers
<?php
$inc = 0.25;
$start = 0.25;
$stop = 5.00;
?>
<?php while($start != ($stop + $inc)){ ?>
<option><?php …
2
votes
17answers
374 views
Any reason to replace while(condition) with for(;condition;) in C++?
Looks like
while( condition ) {
//do stuff
}
is completely equivalent to
for( ; condition; ) {
//do stuff
}
Is there any reason to use the latter instead of the forme …
0
votes
3answers
56 views
Print out the answers for a question by PHP
How can you use the following sample data either with a foreach or while -loop?
I get the following sample data by running
$answers = pg_fetch_all ( $result );.
Sample data
[ …
1
vote
4answers
196 views
Canceling a While loop prematurely.
I'm using a While loop that loops a certain number of cycles (1-576) based on a value entered by a user. It's activated by the user clicking a "Start" button, But I would like it t …
0
votes
2answers
139 views
PHP multidimensional arrays in generating question summaries
The purpose of this question is to find the best way to print data out of PHP multidimensional arrays.
How can you complete the following procedure below?
I have the following ar …
-1
votes
4answers
123 views
Java- && doesn’t seem to be working in a while loop…
NEVER MIND- IT WAS MY OWN DUMB MISTAKE, CONFUSED THE VARIABLES
I have the following while loop:
while (((pi.getFunds() - rmiPrice) > 0) && (rmi.getInventory() > 0 …
1
vote
3answers
171 views
To convert PHP’s while loop to a for -loop
How can you convert the following while loop to a for -loop in PHP?
while( $row2 = pg_fetch_row( $result_tags )
While -loops are a source of errors for me.
I see the while -loop …
4
votes
7answers
344 views
What does a while after a print mean in Perl?
I am new to Perl. Know a little bit of C though. I came across this snippet in one of our classroom notes :
$STUFF="c:/scripts/stuff.txt";
open STUFF or die "Cannot open $STUFF f …
