changed correct Semantic check

This commit is contained in:
Bruder John 2024-07-03 18:42:14 +02:00
parent b7863d0684
commit a9d7e841f5

View File

@ -1,7 +1,21 @@
public class CorrectTest {
int a;
boolean b;
char c;
public class Run { public void controlStructures(int adf, boolean bool) {
public static void main(String[] args) { if (a > (10 + 8)) {
// Test t = new Test(); } else {
// System.out.println(t.test());
} }
while (a > adf) {
a--;
}
for (int i = 0; i < 5; i++) {
}
} }
}