Answered step by step
Verified Expert Solution
Question
1 Approved Answer
1 5 . 1 ( The Triangle class ) Design a class named Triangle that extends GeometricObject. The class contains the following: Three double data
The Triangle class
Design a class named Triangle that extends GeometricObject. The class contains the following:
Three double data fields named side side and side to denote three sides of the triangle.
Constructors:
A noarg constructor that creates a default triangle with each side
A constructor that creates a rectangle with the specified side side and side
The constant accessor and mutator functions for all three data fields.
A constant function named getArea that returns the area of this triangle.
A constant function named getPerimeter that returns the perimeter of this triangle.
A constant function named printTriangle that returns a string that displays the area, perimeter color, and truetialse to indicate whether filled or not.
Submit the following:
Draw the UML diagram that involves the classes Triangle and GeometricObject. points
Implement the class. points
Write a test program that prompts the user to enter three sides of the triangle, enter a color, and enter or to indicate whether the triangle is filled. The program should create a Triangle object with these sides and set the color and filled properties using the input. The program should display the area, perimeter, color, and true or false to indicate whether filled or not. points
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started