Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Implement the Shape hierarchy shown in Fig. 1. Each TwoDimensionalShape should contain method getArea to calculate the area of the two-dimensional shape. Each Three DimensionalShape

image text in transcribed

image text in transcribed

Implement the Shape hierarchy shown in Fig. 1. Each TwoDimensionalShape should contain method getArea to calculate the area of the two-dimensional shape. Each Three DimensionalShape should have methods getArea and getVolume to calculate the surface area and volume, respectively, of the three- dimensional shape. Create a program that uses an array of Shape references to objects of each concrete class in the hierarchy. The program should print a text description of the object to which each array element refers. Also, in the loop that processes all the shapes in the array, determine whether each shape is a TwoDimensionalShape or a Three DimensionalShape. If a shape is a Two DimensionalShape, display its area. If a shape is a Three DimensionalShape, display its area and volume. In your design you must define the class Shape is an abstract class. Your output should appear as follows: Circle: [22, 88] radius: 4 Circle's area is 50 Square: [71, 96] side: 10 Square's area is 100 Sphere: [8, 89] radius: 2 Sphere's area is 50 Sphere's volume is 33 Cube: [79, 61) side: 8 Cube's area is 384 Cube's volume is 512 Shape TwoDimensionalShape Three DimensionalShape

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

Step: 3

blur-text-image

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

Intelligent Information And Database Systems Asian Conference Aciids 2012 Kaohsiung Taiwan March 19 21 2012 Proceedings Part 3 Lnai 7198

Authors: Jeng-Shyang Pan ,Shyi-Ming Chen ,Ngoc-Thanh Nguyen

2012th Edition

3642284922, 978-3642284922

More Books

Students also viewed these Databases questions

Question

3 What are your reactions to your Fit scores?

Answered: 1 week ago