Guest User

Untitled

a guest
Nov 18th, 2018
105
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.43 KB | None | 0 0
  1. //Eric Lei
  2. public class TestPoint
  3. {
  4. public static void main()
  5. {
  6. Point point1 = new Point(5, 7);
  7. Point point2 = new Point(8, 9);
  8.  
  9. System.out.println("Point1: " + newPoint1);
  10. System.out.println("Point2: " + newPoint2);
  11. System.out.println("Distance: " + getDistance(point1, point2));
  12. System.out.println("Midpoint: " + getMidpoint(point1, point2));
  13.  
  14.  
  15. }
  16. }
Add Comment
Please, Sign In to add comment