Answered step by step
Verified Expert Solution
Question
1 Approved Answer
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.
// 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
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started