From 6224fd06eddecb93ff796e7b0f05e4317925d161 Mon Sep 17 00:00:00 2001
From: Sebastian
Date: Wed, 5 Mar 2025 12:09:04 +0100
Subject: [PATCH] A9 - A11
---
Aufgabe_10/index.php | 16 +++++++++++++++
Aufgabe_11/index.php | 46 +++++++++++++++++++++++++++++++++++++++++++-
Aufgabe_9/index.php | 9 +++++++++
3 files changed, 70 insertions(+), 1 deletion(-)
diff --git a/Aufgabe_10/index.php b/Aufgabe_10/index.php
index ab2c0f7..61a3f35 100644
--- a/Aufgabe_10/index.php
+++ b/Aufgabe_10/index.php
@@ -3,6 +3,22 @@
Die Zahl $num ist kleiner als 10
";
+ else if($num <= 100)
+ echo "Die Zahl $num liegt zwischen 10 und 100
";
+ else
+ echo "Die Zahl $num ist größer als 100
";
+
+ if($num % 2 == 0)
+ echo "Die Zahl $num ist gerade.
";
+ else
+ echo "Die Zahl $num ist ungerade.
";
//Code ENDE
diff --git a/Aufgabe_11/index.php b/Aufgabe_11/index.php
index 7f880dc..dfbee93 100644
--- a/Aufgabe_11/index.php
+++ b/Aufgabe_11/index.php
@@ -1,4 +1,4 @@
-