Answered step by step
Verified Expert Solution
Link Copied!
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.

image text in transcribed

// 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

blur-text-image
Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image_2

Step: 3

blur-text-image_3

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Automating Access Databases With Macros

Authors: Fish Davis

1st Edition

1797816349, 978-1797816340

More Books

Students explore these related Databases questions