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

17 lines
438 B
PHP

<?php
echo "<!DOCTYPE html>\t\n<html>\t\n<head>\t\t\n<title>E3 Grösste</title>\t\t\n</head>\t\n<body>\t\n";
$lottozahlen = [23, 43, 24, 7, 2, 27];
$groesste = $lottozahlen[0];
foreach ($lottozahlen as $zahl) {
if ($zahl > $groesste) {
$groesste = $zahl;
}
}
echo "<center><h1>Größte Zahl im Array</h1>\t\n<p>Die größte Zahl im Array ist: $groesste.</p></center>";
echo "</body>\t\n</html>";
?>