mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-24 00:50:53 +07:00
11 lines
249 B
Java
11 lines
249 B
Java
public class Test {
|
|
public static void main(String[] args) {
|
|
<selection>int x = 42;
|
|
int y = 0;
|
|
System.out.println();
|
|
System.out.println();</selection>
|
|
x = (x + y)/2;
|
|
|
|
System.out.println("Point(" + x + ", " + y + ")");
|
|
}
|
|
} |