This repository has been archived on 2026-06-03. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
sgd/ysqld/ysql03d/uebung_kap_2.php

18 lines
314 B
PHP

<?php
// 2.2: es gibt keine erhöhung der schleifenvariable, da $schleifenVariable++; fehlt
// 2.3
$zaehler = 1;
const ENDE = 25;
do {
echo "<p>Schleifendurchlauf Nr. $zaehler. " ."Es folgen noch " .(ENDE - $zaehler) ." Durchläufe.</p>";
$zaehler++;
} while ($zaehler <= ENDE);
?>