first commit

This commit is contained in:
2024-09-02 21:30:59 +08:00
commit 02735c657d
8 changed files with 106 additions and 0 deletions

10
src/Example07.java Normal file
View File

@@ -0,0 +1,10 @@
public class Example07 {
public static void main(String[] args) {
int x = 5;
if (x < 10) {
x ++; // x = x + 1;
}
System.out.println("x=" + x);
}
}