¿¹Á¦

public static void main( String[] args ) {
int x = 0;
int y = 0;
x = y = 10;
System.out.println( x + " " + y ); //$NON-NLS-1$
}

¼Ö·ç¼Ç
º°µµÀÇ ¸í·É¹®¿¡ º¯¼ö¸¦ ÁöÁ¤ÇϽʽÿÀ.

public static void main( String[] args ) {
int x = 0;
int y = 0;
x = 10;
y = 10;
System.out.println( x + " " + y ); //$NON-NLS-1$
}