왜 무한 루프 상태가 되는 거죠? 다음 코드가 있습니다. public class Tests { public static void main(String[] args) throws Exception { int x = 0; while(x x = 1 * 5; // x == 2 at this point, as it "gave" the equation its value of 1 // and then gets incremented by 1 to 2. ==> x = 5; // And then that RightHandSide value is assigned to // the LeftHandSide variable, leaving x with the value of 5. 이 경우 절대 증가하지 않기 때문입니다. x++는..