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. please include code too.

This is a Class called Point. Create a Main class which would

// 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; X = } 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) { newx; Y = newY; } X = public void translate (int dx, int dy) { setLocation(x + dx, y + dy); } }

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!