Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Please help with it solve using java 1 CSC 162 - Lab 3 (4 programs) Inheritance 1. A point in the x-y plane is represented

image text in transcribed

Please help with it solve using java

1 CSC 162 - Lab 3 (4 programs) Inheritance 1. A point in the x-y plane is represented by its x-coordinate and y- coordinate. Design the class Point that can store and process a point in the X-y plane. - We should then perform operations on a point, such as showing the point, setting the coordinates of the point, printing the coordinates of the point, returning the x-coordinate, and returning the y-coordinate. Write a test program to test various operations on a point. The class Point should contain the following methods and data members: 1. protected members x and y 2. default constructor 3. constructor with parameters 4. setPoint(x) 5. getX() 6. getY() 7. toString() 8. equals(x) 9. makeCopy(x) 10.getCopy() 11. printPoint() The output should show the following: - Initialize myPoint = [5,00,4.00) Initialize yourPoint = [0.00, 0.00) Print both of these objects Set yourPoint to [5.00, 45,00) and print it Determine if the 2 points are equal or not Change the myPoint coordinates to [6.00, 9.00] Print this new myPoint object Copy myPoint into yourPoint and then print the yourPoint object Print your program to test the class Point Paste the output after the program Print the Point class

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

Step: 3

blur-text-image

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

Database Design And Implementation

Authors: Edward Sciore

2nd Edition

3030338355, 978-3030338350

More Books

Students also viewed these Databases questions

Question

What is the difference between Needs and GAP Analyses?

Answered: 1 week ago

Question

What are ERP suites? Are HCMSs part of ERPs?

Answered: 1 week ago