Search
❯
Jun 11, 20251 min read
int a = 3; System.out.println(-a); // -3 System.out.println(++a); // 4 System.out.println(--a); // 3