This commit is contained in:
2024-08-20 13:43:58 +02:00
parent 97ecb38f48
commit f72f657b0a
47 changed files with 375 additions and 4 deletions

16
Aufgabe_31/ex.php Normal file
View File

@@ -0,0 +1,16 @@
<?php
class Ex
{
function ShowMessage(string $str)
{
echo "<p>Dies ist die Nachricht: ".$str."</p>";
}
function GiveNumber()
{
echo "<p>Hier eine Zufallszahl: ".random_int(0,100)."</p>";
}
}
?>