개발자에게 배우는 개발자교육! 구로 오라클자바교육학원 www.oraclejava.co.kr

 

 

개발자에게 배우는 개발자교육! 구로 오라클자바교육학원 www.oraclejava.co.kr

 

 

 

 

메개변수 예제(1)

 
 
class Swap
{
 static void swap(int x, int y)
 {
  int temp;
  temp = x;
  x = y;
  y = temp;
 }
 public static void main(String[] args)
 {
  int x = 10;
  int y = 20;
  
  Swap.swap(x, y);
  System.out.println("x.. " + x);
  System.out.println("y.. " + y);
 }
}

+ Recent posts