Quellcode von zufall3.php

<!-- zufall3.php 2012.02 bi
     Demoprogramm fuer while-Schleife
     -->
<html> 
<body> 
  <h3>while-Schleife zur Ausgabe von Zufallszahlen kleiner als 75</h3> 
  <?php
    $zz
=mt_rand(11,99);
    while (
$zz 75) {
        echo 
"$zz ";
        
$zz=mt_rand(11,99);
    } 
    echo 
"<br />Die Abbruchszahl lautet: $zz";
  
?>
</body> 
</html> 

Letzte Aktualisierung: 12.12.2020 19:55