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/sonstiges/aufgabe-4.php
2025-03-19 11:38:25 +01:00

16 lines
219 B
PHP

<?php
$n = 7;
$k = -2;
$i = 0;
while ($n != 1 && $i < 3){
$i++;
if ($n % 2 == 0) {
$n = ($n/2);
echo $n ;
} else {
$n = ((2 $k) + 1) $n + 1;
$k--;
echo $n ;
}
}
?>