Skip to content

Instantly share code, notes, and snippets.

@magmastonealex
Created October 3, 2013 20:32
Show Gist options
  • Save magmastonealex/6816659 to your computer and use it in GitHub Desktop.
Save magmastonealex/6816659 to your computer and use it in GitHub Desktop.
<?php
$troutcost = 1;
$pikecost = 2;
$pickerelpoints = 3;
$total = 2
$tpoints = 0;
$numtrout=0;
$numpike=0;
$numpic=0;
while( $tpoints < $total){
$tpoints += $troutcost;
if($tpoints < $total){
echo "$numtrout Brown Trout, $numpike Nothern Pike, $numpic Yellow Pickerel"
}
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment