diff --git a/bin/Grundlagen.class b/bin/Grundlagen.class index c400bac..d9e5b46 100644 Binary files a/bin/Grundlagen.class and b/bin/Grundlagen.class differ diff --git a/src/Grundlagen.java b/src/Grundlagen.java index 2686ea1..df1ef38 100644 --- a/src/Grundlagen.java +++ b/src/Grundlagen.java @@ -1,21 +1,27 @@ public class Grundlagen { public static void main(String[] args) { + // Hello World System.out.println("Hello World"); + // Zahlen Variablen int x = 99; int y = 2; x = x + 1; x = x + y; System.out.println(x); + // Buchstaben Variablen char myA = 'a'; + System.out.println(myA); + // If & else if (x > 101) { System.out.println("Der Wert ist grösser als 101"); } else { System.out.println("Der Wert ist kleiner als 101"); } + // Iteration int anzahlDurchgaenge = 1; while(anzahlDurchgaenge <= 5) { System.out.println("Durchgang nr. " + anzahlDurchgaenge);