Write a class called line that represents a line segment between two points. your line objects should have the following methods: public line(point p1, point p2) constructs a new line that contains the given two points. public point getp1() returns this line's first endpoint. public point getp2() returns this line's second endpoint. public string tostring() returns a string representation of this line, such as "[(22, 3), (4, 7)]". write a complete program to check your work. submit line, and client class .java files.

Solved
Show answers

Ask an AI advisor a question