This repository has been archived on 2025-10-20. You can view files and clone it, but cannot push or open issues or pull requests.
Files
2bki21/progp/25-2-27/aufgabe-1.php
danielvici123 463fd164ed aufgabe 1 prog
2025-02-28 07:34:06 +01:00

17 lines
170 B
PHP

<h1>Moin</h1>
<?php
$i = 0;
while ($i < 10) {
if ($i > 5) {
echo $i . "<br>";
} else {
echo $i . "<br>";
}
$i = $i + 1;
}
echo $i;
?>