johns-branch #17

Merged
i22005 merged 17 commits from johns-branch into main 2024-07-01 21:08:24 +00:00
2 changed files with 15 additions and 15 deletions
Showing only changes of commit 71ffb8bb83 - Show all commits

View File

@ -4,14 +4,14 @@ public class AllFeaturesClassExample {
char c; char c;
public void controlStructures(int adf, boolean bool) { public void controlStructures(int adf, boolean bool) {
// if (a > (10 + 8)) { if (a > (10 + 8)) {
// } else { } else {
// } }
//
//
// while (a > adf) { while (a > adf) {
// a--; a--;
// } }
for (int i = 0; i < 5; i++) { for (int i = 0; i < 5; i++) {
} }
@ -20,14 +20,14 @@ 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");
// } // }
// } // }

View File

@ -14,8 +14,8 @@ public class AllFeaturesClassExample {
a--; a--;
} }
// for (int i = 0; i < 5; i++) { for (int i = 0; i < 5; i++) {
// } }
} }