Jump to content

do-while not working as it should..


aurimasju

Recommended Posts

Hi, I'm new to php so I'm trying to code some random stuff..

<?php    
    $headCount = 0;
    $loopCount = 0;
    do {
        $flip = rand(0,1);
    if($flip = 0) {
        echo "<p>H</p>";
        $loopCount++;
        $headCount++;
    }
    else {
        echo "<p>T</p>";
        $loopCount++;
        $headCount = 0;
    }
    } while($headCount == 2 or $loopCount == 5); //should flip it til loopcount reach 5 or headcount reach 2
    
    if($loopCount <= 5 && $headCount == 2) {
        echo "<p>We rolled " . $headCount . " heads in a row in " . $loopCount . " flips.</p>";
    }
    else {
        echo "<p> " . $loopCount . " roll(s) was not enough to get two <b>H</b> in a row.</p>";
    }
    ?>

but all it does is in a screenshot .. thanks!yMc3moZ.png

Link to comment
Share on other sites

Your logic is flawed. The loop will only continue if the conditions evaluate to true. $headcount is not equal to 2 and $loopcount is not equal to 5, so the condition fails and the loop exists after the first go.

 

What I think you want is the loop to continue while $headcount is less than 2 or $loopcount is less than 5.

Link to comment
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.