Voll Upload SGD Fachinformatiker PHP

This commit is contained in:
2026-06-03 13:46:32 +00:00
parent 1256ec2190
commit 84a568d89c
265 changed files with 9961 additions and 2 deletions
+24
View File
@@ -0,0 +1,24 @@
<?php
$zahlen = [14, 45, 26, 9, 21, 7];
echo "<h3>Die größte Zahl im Array ist "
.max($zahlen)
."</h3>";
//------------------------------------------------------------------------------------------//
echo "<h3>Der größte Wert aus 14, 45, 26, 9, 21, 7 ist "
.max(14, 45, 26, 9, 21, 7)
."! </h3>";
//------------------------------------------------------------------------------------------//
echo "<h3>Der größte Wert aus (22*23), (14*43), (15*24), (46*7), 2, (23*27) ist "
.max((22*23), (14*43), (15*24), (46*7), 2, (23*27))
."! </h3>";
?>