Question: This is a Class called Point. Create a Main class which would have access to the Point class and be able to change the values
This is a Class called Point. Create a Main class which would have access to the Point class and be able to change the values of X and Y. Must be done in Java.

// A Point object represents an (x, y) location. public class Point private int x; private int y; public Point (int initialx, int initialy) { initialx; y = initialY; } public int getX() { return x; } public int getY() { return y; } public double distance FromOrigin() { return Math.sqrt (x * x + y * y); } public void setLocation (int newx, int newy) { X = newX; Y = newY; } public void translate (int dx, int dy) { setLocation (x + dx, y + dy); }
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
