17 lines
478 B
Java
17 lines
478 B
Java
import java.awt.*;
|
|
public class Swap {
|
|
public static void main(String[] args) {
|
|
Point p1= new Point(5, 2);
|
|
Point p2= new Point(-3, 6);
|
|
swapPoints(p1, p2);
|
|
System.out.println("p1: ("+p1.x+", "+p1.y+")");
|
|
System.out.println("p2: ("+p2.x+", "+p2.y+")");
|
|
}
|
|
|
|
public static void swapPoints(Point p1, Point p2) {
|
|
Point ptmp = new Point(p1);
|
|
p1.setLocation(p2.x, p2.y);
|
|
p2.setLocation(ptmp.x, ptmp.y);
|
|
}
|
|
}
|