COULD YOU PLEASE SEND THE ANSWER as PDF please because i can

COULD YOU PLEASE SEND THE ANSWER as PDF please because i cant view it on regular formart Please

Design a Java class named Polygon that contains:

A private int data field named numSides that defines the number of sides of the polygon. The default value should be 4.

A private double data field named sideLength that defines the length of each side. The default value should be 10.0.

A private double data field named xCoord that defines the x-coordinate of the center of the polygon. The default value should be 0.0.

A private double data field named yCoord that defines the y-coordinate of the center of the polygon. The default value should be 0.0.

A private double data field named apothem that defines the apothem of the polygon. The default value should 5.0.

A private double data filed named perimeter that defines the perimeter of the polygon. The default value should 20.0.

A no argument constructor that creates a Polygon using the default number of sides, default side length, default x- and y-coordinates, and the default apothem.

A constructor that creates a Polygon using a specified number of sides, side length, xand y-coordinates and the apothem

A getArea() method that returns a double value representing the area of the polygon. (Note the area of a regular Polgon can be calculated from ½ * Apothem*Perimeter)

Getter and setter methods for all data fields

A toString() method that displays the number of sides, side length, x-coordinate, ycoordinate and apothem values in String format

Be sure your code compiles. Next, write a Java test program, named TestPolygon, to create five different polygons. When creating the five polygons, create one using the no argument constructor. For the remaining four, feel free to use any number of sides, side length and x-, and y-coordinates and apothem that are not equal to the default values and not equal to each other. For each of the five polygons, call all of the methods and display the results.For example for a Polygon with 3 sides, side length of 2.0 and xcoordinate and y-coordinates of 1.0, and apothem of 1.0 the following output may result:

toString() results: (numsides=3, sideLength=2.0,

xcoord=1.0,ycoord=1.0, apothem=1.0)

getNumSides() results: 3

getSideLength() results: 2.0

getXCoord() results: 1.0

getYCoord() results: 1.0

getApothem() results:1.0

getPerimeter() results: 6.0

getArea() results: 3.0

setNumSides(4) results: 4 2

setSideLength(3) results: 3.0

setXCoord(2.0) results: 2.0

setYCoord(2.0) results: 2.0

setApothem(2.0) results:2.0

Keep in mind, for five Polygons, you will have five different output results. Also, note there is no requirement to actually draw a Polygon.

COULD YOU PLEASE SEND THE ANSWER as PDF please because i cant view it on regular formart Please

Solution

class Polygon
private int numSides;
private double sideLength;
private double xCoord;
private double yCoord;

private double apothem;

private double perimeter;
public Polygon(){
   numSides = 4;
   sideLength = 10;
   xCoord = 0.0;
   yCoord = 0.0;

apothem=5.0

perimeter=20.0;

}
public Polygon(int a,double b,double x,double y){
   setNumSides(a);
   setSideLength(b);
   setXCoord(x);
   setYCoord(y);
}
public int setNumSides(int a){
   numSides = a;
   return numSides;
}
public double setSideLength(double b){
   sideLength = b;
   return sideLength;
}
public double setXCoord(double x){
   xCoord = x;
   return xCoord;
}
public double setYCoord(double y){
   yCoord = y;
   return yCoord;
}

public double getPerimeter() {

return numSides*sideLength;

}
public int getNumSides() {

return numSides;

}
public double getSideLength() {

return sideLength;

}
public double getXCoord() {

return xCoord;

}
public double getYCoord() {

return yCoord;

}
public double getArea() {

return 1/2 * apothem * perimeter;

}

public String toString(){

   return \"(\"+numSides+\", \"+String.format(\"%.1f\",sideLength)+\", \"+ String.format(\"%.1f\",xCoord)+\",\"+ String.format(\"%.1f\",xCoord)+
   \")\";
}
}
class TestPolygon{
   public static void main(String[] args){
  Polygon P = new Polygon();
  Polygon[] P_array = {new Polygon(5,11,2,3), new Polygon(6,12,3,4),new Polygon(7,11,2,4), new Polygon(8,115,5,3)};
System.out.println(\"toString() results: \"+P);
System.out.println(\"getNumSides() results: \"+ P.getNumSides());
System.out.println(\"getSideLength() results: \"+ P.getSideLength());
System.out.println(\"getXCoord() results: \"+ P.getXCoord());
System.out.println(\"getYCoord() results: \"+ P.getYCoord());
  System.out.println(\"setNumSides(4) results: \"+ P.setNumSides(4));
System.out.println(\"setSideLength(3) results: \"+ P.setSideLength(3));
System.out.println(\"setXCoord(2.0) results: \"+ P.setXCoord(2));
System.out.println(\"setYCoord(2.0) results: \"+ P.setYCoord(2));

System.out.println(\"getPerimeter() results: \"+ P.getPerimeter())

System.out.println(\"getArea() results\" + P.getArea())

  for(int i=0; i<P_array.length; i++)
   {
   System.out.println(\"toString() results: \"+P_array[i]);
System.out.println(\"getNumSides() results: \"+ P_array[i].getNumSides());
System.out.println(\"getSideLength() results: \"+ P_array[i].getSideLength());
System.out.println(\"getXCoord() results: \"+ P_array[i].getXCoord());
System.out.println(\"getYCoord() results: \"+ P_array[i].getYCoord());
System.out.println(\"getPerimeter() results: \"+ P_array[i].getPerimeter());
System.out.println(\"setNumSides(4) results: \"+ P_array[i].setNumSides(4));
System.out.println(\"setSideLength(3) results: \"+ P_array[i].setSideLength(3));
System.out.println(\"setXCoord(2.0) results: \"+ P_array[i].setXCoord(2));
System.out.println(\"setYCoord(2.0) results: \"+ P_array[i].setYCoord(2));
   }
   }

COULD YOU PLEASE SEND THE ANSWER as PDF please because i cant view it on regular formart Please Design a Java class named Polygon that contains: A private int d
COULD YOU PLEASE SEND THE ANSWER as PDF please because i cant view it on regular formart Please Design a Java class named Polygon that contains: A private int d
COULD YOU PLEASE SEND THE ANSWER as PDF please because i cant view it on regular formart Please Design a Java class named Polygon that contains: A private int d

Get Help Now

Submit a Take Down Notice

Tutor
Tutor: Dr Jack
Most rated tutor on our site