Database System Concepts
Database System Concepts
7th Edition
ISBN: 9780078022159
Author: Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher: McGraw-Hill Education
Bartleby Related Questions Icon

Related questions

Question

Please write in Java and use Math.PI for pi.

I wrote the print statements, I need them where they belong:

System.out.print("Enter\n1)Two dimensional shape\n2)Three dimensional shape:");
System.out.print("Enter\n1)Circle\n2)Square\n3)Triangle:");
System.out.print("Enter radius of circle:");
System.out.print("Enter side of square:");
System.out.print("Enter side of triangle:");
System.out.printf("Area: %.2f \nPerimeter: %.2f", shape.getArea(), shape.getPerimeter());
System.out.print("Enter\n1)Sphere\n2)Cube\n3)Tetrahedron:");
System.out.print("Enter radius of sphere:");
System.out.print("Enter side of cube:");
System.out.print("Enter side of tetrahedron:");
System.out.printf("Surface area: %.2f \nVolume: %.2f", shape.getArea(), shape.getVolume());

The screenshot explains the question.

Implement the Shape hierarchy create an abstract class called Shape, which will be the parent class to TwoDimensionalShape and
Three DimensionalShape. The classes Circle, Square, and Triangle should inherit from TwoDimensionalShape, while Sphere, Cube, and Tetrahedron
should inherit from ThreeDimensionalShape.
--
Each TwoDimensionalShape should have the methods getArea() and getPerimeter(), which calculate the area and perimeter of the shape,
respectively. Every Three DimensionalShape should have the methods getArea() and getVolume(), which respectively calculate the surface area
and volume of the shape. Every class should have a member variable containing its dimensions for example, the Circle class should have a
member variable describing its radius, while the Triangle class should have three member variables describing the length of each side. Note that
the Tetrahedron cass should describe a regular tetrahedron, and as such, should only have one member variable.
Interactive Session
Create a Driver class with a main method to test your Shape hierarchy. The program should prompt the user to enter the type of shape they'd like
to create, and then the shape's dimensions. If the shape is two dimensional, the program should print its area and its perimeter, and if it's a three
dimensional shape, its surface area and volume.
SAMPLE RUN #1: java Driver
Hide Invisibles
Enter
1) Two dimensional.shape<
2) Three dimensional shape:14
Enter<
1) Circle<
2) Square
3) Triangle: 1ª
Enter radius of circle:1.56<
Area: 7.65.4
Perimeter:.9.804
--
Highlight: None
ooo
Show Highlighted Only
expand button
Transcribed Image Text:Implement the Shape hierarchy create an abstract class called Shape, which will be the parent class to TwoDimensionalShape and Three DimensionalShape. The classes Circle, Square, and Triangle should inherit from TwoDimensionalShape, while Sphere, Cube, and Tetrahedron should inherit from ThreeDimensionalShape. -- Each TwoDimensionalShape should have the methods getArea() and getPerimeter(), which calculate the area and perimeter of the shape, respectively. Every Three DimensionalShape should have the methods getArea() and getVolume(), which respectively calculate the surface area and volume of the shape. Every class should have a member variable containing its dimensions for example, the Circle class should have a member variable describing its radius, while the Triangle class should have three member variables describing the length of each side. Note that the Tetrahedron cass should describe a regular tetrahedron, and as such, should only have one member variable. Interactive Session Create a Driver class with a main method to test your Shape hierarchy. The program should prompt the user to enter the type of shape they'd like to create, and then the shape's dimensions. If the shape is two dimensional, the program should print its area and its perimeter, and if it's a three dimensional shape, its surface area and volume. SAMPLE RUN #1: java Driver Hide Invisibles Enter 1) Two dimensional.shape< 2) Three dimensional shape:14 Enter< 1) Circle< 2) Square 3) Triangle: 1ª Enter radius of circle:1.56< Area: 7.65.4 Perimeter:.9.804 -- Highlight: None ooo Show Highlighted Only
Expert Solution
Check Mark
Knowledge Booster
Background pattern image
Computer Science
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
Recommended textbooks for you
Text book image
Database System Concepts
Computer Science
ISBN:9780078022159
Author:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:McGraw-Hill Education
Text book image
Starting Out with Python (4th Edition)
Computer Science
ISBN:9780134444321
Author:Tony Gaddis
Publisher:PEARSON
Text book image
Digital Fundamentals (11th Edition)
Computer Science
ISBN:9780132737968
Author:Thomas L. Floyd
Publisher:PEARSON
Text book image
C How to Program (8th Edition)
Computer Science
ISBN:9780133976892
Author:Paul J. Deitel, Harvey Deitel
Publisher:PEARSON
Text book image
Database Systems: Design, Implementation, & Manag...
Computer Science
ISBN:9781337627900
Author:Carlos Coronel, Steven Morris
Publisher:Cengage Learning
Text book image
Programmable Logic Controllers
Computer Science
ISBN:9780073373843
Author:Frank D. Petruzella
Publisher:McGraw-Hill Education