후위연산자1 [Java] 산술연산자/후위 전위연산 (예제) 1. InDecoperTest_01.java public class InDecoperTest_01 { public static void main(String[] args) { int x = 100; System.out.println("전위 증가 연산자 (++x)"); System.out.printf("x의 현재값 = %d\n", (++x)); System.out.println(); x=200; System.out.println("후위 증가 연산자 (x++)"); System.out.printf("x의 현재값 = %d\n", (x++)); } } 2. RelOperTest.java public class RelOperTest_01 { public static void main(String[] args){ .. 2023. 3. 5. 이전 1 다음