small changes
Some checks are pending
Gitea Actions Demo / Explore-Gitea-Actions (push) Waiting to run

This commit is contained in:
Lucas 2024-07-01 23:31:22 +02:00
parent 771b92bfd7
commit 3500ffd377

View File

@ -9,42 +9,25 @@ public class AllFeaturesClassExample {
this.b = b; this.b = b;
this.c = c; this.c = c;
} }
private class InnerClass {
void innerMethod() {
System.out.println("Inner class method");
}
}
// Methode zur Demonstration von Kontrollstrukturen // Methode zur Demonstration von Kontrollstrukturen
void controlStructures() { void controlStructures() {
// if-else Anweisung // if-else Anweisung
if (a > 10) { if (a > 10) {
System.out.println("a ist größer als 10"); // System.out.println("a ist größer als 10");
} else { } else {
System.out.println("a ist nicht größer als 10"); // System.out.println("a ist nicht größer als 10");
} }
// while Schleife // while Schleife
while (a > 0) { while (a > 0) {
System.out.println("a ist " + a); // System.out.println("a ist " + a);
a--; a--;
} }
// for Schleife // for Schleife
for (int i = 0; i < 5; i++) { for (int i = 0; i < 5; i++) {
System.out.println("for Schleife Iteration: " + i); // System.out.println("for Schleife Iteration: " + i);
}
// switch Anweisung
switch (c) {
case 'a':
System.out.println("c ist ein 'a'");
break;
case 'b':
System.out.println("c ist ein 'b'");
break;
default:
System.out.println("c ist nicht 'a' oder 'b'");
} }
} }
@ -52,15 +35,28 @@ public class AllFeaturesClassExample {
void logicalOperations() { void logicalOperations() {
// Logische UND-Operation // Logische UND-Operation
if (b && a > 5) { if (b && a > 5) {
System.out.println("a ist größer als 5 und b ist wahr"); // System.out.println("a ist größer als 5 und b ist wahr");
} }
// Logische ODER-Operation // Logische ODER-Operation
if (b || a < 5) { if (b || a < 5) {
System.out.println("b ist wahr oder a ist kleiner als 5"); // System.out.println("b ist wahr oder a ist kleiner als 5");
} }
} }
void mathOperations() {
// Addition
int sum = a + 5;
// Subtraktion
int difference = a - 5;
// Multiplikation
int product = a * 5;
// Division
int quotient = a / 5;
// Modulo
int remainder = a % 5;
}
public static void main(String[] args) { public static void main(String[] args) {
AllFeaturesClassExample obj = new AllFeaturesClassExample(12, true, 'a'); AllFeaturesClassExample obj = new AllFeaturesClassExample(12, true, 'a');
obj.controlStructures(); obj.controlStructures();