Question: Java Description of the Problem Computers are playing an increasing role in education. Write a program that will help an elementary school student to calculate

 Java Description of the Problem Computers are playing an increasing role

Java

Description of the Problem Computers are playing an increasing role in education. Write a program that will help an elementary school student to calculate the area of different shapes as in UML-Class diagram below. Sharearca - baseint height: int - area double + set/get methods + Triangle Aca + Parallelogramarea + display 1 1. Use the following comments as a guide to calculate the area of shapes given in the formulas below public class Shares // Write a default constructor that initiate the sides of the shape with value 3, and another and overloaded constructor to assign the value of shapes sides given from the user. // Write set and get methods for all instance variables. // Triangle Area will calculate the area of triangle as formula triangle area=\*b*h Where b = base, n= height // Parallelogramarea will calculate the area of parallelogram as formula parallelogram area - rea = b = h. Where b = base, h= height // display method will print the area of the chosen shape using get methods. 2. Write the Areados codes that will set 2 objects of Sharedsea, Use set methods to assign the values received from the user, calculate the area of chosen shape, and display the area as the sample output given below Sample output: Welcome to Area of Shapes App Choose which shape you would like to calculate its area_ (Enter 1 for Triangle, or 2 for Parallelogram): 2 Please Enter Base: 5 Please Enter Height: 7 Area of Parallelogran - 35 Would you like to calculate the area of another shape (1:Yea 0:No)? 1 Choose which shape you would like to calculate its area_ Enter 1 for Triangle, or 2 for Parallelogram): 1 Please enter Base: 5 Please Enter Height: 7 Area of triangle - 17.5 Would you like to calculate the area of another shape (1:Yes 0:No)? 0 Thank you

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!