Write a method getshortside that takes no parameters


Assignment: Triangle 2.0

Description:

For the task we'll build a class representing a Rectangle. The tests for this task will not check what's happening inside the class you create, so it's up to you as to what data members you use. The tests will also assume you can write methods and constructors correctly. This means that you have to get the names, returns and parameters correct before the tests will even run.

Okay, now the task itself.

Your company is doing some consulting work and the client has asked for a new, more exciting version of their existing Triangle. They want a Triangle, but with an extra side, which marketing are calling Triangle 2.0.

To meet the specification you need to create a class called Rectangle with the following methods:

o A no-parameter constructor that sets all side lengths to 1.

o A one parameter constructor that takes an int, and sets all side lengths to that value.

o A two parameter constructor, that takes two ints, and sets two opposite sides to one length, and the other pair of opposite sides to the other length.

o A method getShortSide that takes no parameters and returns the length of the shortest side as an int.

o A method getLongSide that takes no parameters and returns the length of the longest side as an int.

o A method isSquare that takes no parameters and returns true if the rectangle is a square, and false otherwise.

o A method area that takes no parameters and returns the area of the rectangle as an int.

o A method diagonal that takes no parameters and returns the length of the diagonals as a double. The library function Math.sqrt(double) may be useful here.

o A method bigger that takes a Rectangle as a parameter and returns true if the current Rectangle has an area strictly greater than the area of one given in the parameter.

You don't have to worry about not-right-angled quadrilaterals (so there's only squares and rectangles, no parallelograms, rhombi, trapezoids etc.).

You also start with nothing in the scaffold. You will have to create a suitable file for the class. The run button will assume that Rectangle has a main method, but it's not part of the tests, so you don't have to write it if you don't care about it.

Format your assignment according to the following formatting requirements:

o The answer should be typed, using Times New Roman font (size 12), double spaced, with one-inch margins on all sides.

o The response also includes a cover page containing the title of the assignment, the student's name, the course title, and the date. The cover page is not included in the required page length.

o Also include a reference page. The Citations and references must follow APA format. The reference page is not included in the required page length.

Solution Preview :

Prepared by a verified Expert
Business Management: Write a method getshortside that takes no parameters
Reference No:- TGS03139861

Now Priced at $50 (50% Discount)

Recommended (99%)

Rated (4.3/5)