PASTEBIN
| #1 paste tool since 2002
create new paste
tools
api
archive
real-time
faq
PASTEBIN
create new paste
trending pastes
sign up
login
my settings
my profile
Public Pastes
Untitled
JavaScript | 4 sec ago
Untitled
9 sec ago
Untitled
10 sec ago
Untitled
15 sec ago
Untitled
21 sec ago
How To Use Reflect...
27 sec ago
Lista de ExercĂci...
29 sec ago
Pakistan vs Englan...
41 sec ago
Untitled
By: a guest on Jan 28th, 2012 | syntax:
None
| size: 0.31 KB | hits: 27 | expires: Never
download
|
raw
|
embed
|
report abuse
Copied
<?
$done = "notdone";
$iter = 0;
// TODO: Fix this!!!!
while($done != "done"){
if($done != "halfway"){
$iter++;
print "$iter\n";
if($iter == 255){
$done = "halfway";
}
} else {
$iter--;
print "$iter\n";
if($iter == 0){
$done = "done";
}
}
}
?>
create a
new version
of this paste
RAW Paste Data
<? $done = "notdone"; $iter = 0; // TODO: Fix this!!!! while($done != "done"){ if($done != "halfway"){ $iter++; print "$iter\n"; if($iter == 255){ $done = "halfway"; } } else { $iter--; print "$iter\n"; if($iter == 0){ $done = "done"; } } } ?>