Commented my code

This commit is contained in:
Sage Burger 2023-08-16 15:11:44 +02:00
parent fd414bca90
commit 220de89555
2 changed files with 6 additions and 0 deletions

Binary file not shown.

View file

@ -1,21 +1,27 @@
public class Grundlagen { public class Grundlagen {
public static void main(String[] args) { public static void main(String[] args) {
// Hello World
System.out.println("Hello World"); System.out.println("Hello World");
// Zahlen Variablen
int x = 99; int x = 99;
int y = 2; int y = 2;
x = x + 1; x = x + 1;
x = x + y; x = x + y;
System.out.println(x); System.out.println(x);
// Buchstaben Variablen
char myA = 'a'; char myA = 'a';
System.out.println(myA);
// If & else
if (x > 101) { if (x > 101) {
System.out.println("Der Wert ist grösser als 101"); System.out.println("Der Wert ist grösser als 101");
} else { } else {
System.out.println("Der Wert ist kleiner als 101"); System.out.println("Der Wert ist kleiner als 101");
} }
// Iteration
int anzahlDurchgaenge = 1; int anzahlDurchgaenge = 1;
while(anzahlDurchgaenge <= 5) { while(anzahlDurchgaenge <= 5) {
System.out.println("Durchgang nr. " + anzahlDurchgaenge); System.out.println("Durchgang nr. " + anzahlDurchgaenge);