This commit is contained in:
Sage Burger 2023-08-16 15:00:37 +02:00
parent 664a85c047
commit 1ce229b1b2
2 changed files with 3 additions and 1 deletions

Binary file not shown.

View file

@ -11,7 +11,9 @@ public class Grundlagen {
char myA = 'a'; char myA = 'a';
if (x > 101) { if (x > 101) {
System.out.println("Der Wert is grösser als 101"); System.out.println("Der Wert ist grösser als 101");
} else {
System.out.println("Der Wert ist kleiner als 101");
} }
} }
} }