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/24-12-11 -- edicer 2/aufgabe.php
2024-12-12 11:49:29 +01:00

13 lines
381 B
PHP

<?php
$sost = ["8", "15","2","4","12","10","1"];
$tage = ["Montag", "Dienstag", "Mittwoch", "Donnerstag", "Freitag","Samstag", "Sontag"];
foreach ($sost as $key =>$value){
$tag = $tage[$key];
echo "<label>---$tag---</label><br>";
echo "Am $tag waren es $value Stunde(n) Sonnenschein<br>";
echo "Am Tag-Nr.: ". ($key+1). " gab es $value h Sonnenschein<br>";
}
?>