update: testing and result finding quest
This commit is contained in:
11
tests/test2.java
Normal file
11
tests/test2.java
Normal file
@@ -0,0 +1,11 @@
|
||||
public class test2{
|
||||
public static void main(String[] args) {
|
||||
int x = 10; // Line 3
|
||||
int y = 0; // Line 4
|
||||
if (x > 5) { // Line 5
|
||||
y = x * 2; // Line 6
|
||||
}
|
||||
int z = y + 1; // Line 8
|
||||
System.out.println(z); // Line 9
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user