class Test01
{
 public static void main(String[] args)
 {
  int x,y,z;
  x=y=z=1;

  z+= -x++ + ++y;
     System.out.printf("x=%d, y=%d, z=%d\n",x,y,z);
 }
}

Posted by 윤연식
,