changed correct Semantic check
This commit is contained in:
parent
b7863d0684
commit
a9d7e841f5
@ -1,7 +1,21 @@
|
||||
public class CorrectTest {
|
||||
int a;
|
||||
boolean b;
|
||||
char c;
|
||||
|
||||
public class Run {
|
||||
public static void main(String[] args) {
|
||||
// Test t = new Test();
|
||||
// System.out.println(t.test());
|
||||
public void controlStructures(int adf, boolean bool) {
|
||||
if (a > (10 + 8)) {
|
||||
} else {
|
||||
}
|
||||
|
||||
|
||||
while (a > adf) {
|
||||
a--;
|
||||
}
|
||||
|
||||
for (int i = 0; i < 5; i++) {
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user