Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

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,

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:

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

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

  3. 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.

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

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

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

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

  8. 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.

  9. 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.

import java.lang.Math; public class Rectangle {

int sideOne; int sideTwo;

public Rectangle(){

sideOne = 1;

}

public Rectangle(int sideOne){ this.sideOne = sideOne; sideTwo = sideOne; }

public Rectangle(int sideOne, int sideTwo){

this.sideOne = sideOne; this.sideTwo = sideTwo;

}

public int getShortSide(){

if(sideOne < sideTwo ){

return sideOne; }

else{

return sideTwo; }

}

public int getLongSide(){

if(sideOne > sideTwo ){

return sideOne; }

else{

return sideTwo; }

} public boolean isSquare(){

if (sideOne == sideTwo){

return true;

}

else {

return false;

}

public int getArea(){

return sideOne * sideTwo; }

public double getDiagonal(){

double dia = 0.00;

if (sideOne == sideTwo){

dia = sideOne * Math.sqrt(2.00); }

else if(sideOne > sideTwo){

dia = Math.sqrt((sideOne * 2.00)+(sideTwo * 2.00)); }

return dia;

}

public boolean bigger(int sideOne , int sideTwo){

int area1 = getArea();

int area2 = (this.sideOne * this.sideTwo);

if (area1 > area2){

return true;

}

else{

return false; }

}

} }

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

Concepts of Database Management

Authors: Philip J. Pratt, Joseph J. Adamski

7th edition

978-1111825911, 1111825912, 978-1133684374, 1133684378, 978-111182591

More Books

Students also viewed these Databases questions

Question

a. Do team members trust each other?

Answered: 1 week ago

Question

How do members envision the ideal team?

Answered: 1 week ago

Question

Has the team been empowered to prioritize the issues?

Answered: 1 week ago