Given the above class hierarchy with the methods provided, write the complete C++ program to do the following : Declare the complete classes Person, Student and Staff. The method display () will print the details as in the box. Declare 2 objects of type Student. Increase the fee by 10% and set the fee in the related objects using the setFee () method. Determine which of the two objects have the highest fee. Declare 3 objects of type Staff. Find the average pay for the three Staffs. Submit your C++ program for testing.

EBK JAVA PROGRAMMING
9th Edition
ISBN:9781337671385
Author:FARRELL
Publisher:FARRELL
Chapter9: Advanced Array Concepts
Section: Chapter Questions
Problem 2PE
icon
Related questions
Question

Given the above class hierarchy with the methods provided, write the complete C++ program to do the following :

  1. Declare the complete classes Person, Student and Staff. The method display () will print the details as in the box.
  2. Declare 2 objects of type Student. Increase the fee by 10% and set the fee in the related objects using the setFee () method. Determine which of the two objects have the highest fee.
  3. Declare 3 objects of type Staff. Find the average pay for the three Staffs.

Submit your C++ program for testing.

Person
|-name:String
-address:String
|+Person(name:String, address:String)
+getName ():String
+getAddress ():String
+setAddress (address:String):void
+ display (): void
"Person[name=?, address=?]"
extends
Student
Staff
-program:String
-year:int
-fee:double
-school:String
-pay:double
+Student (name:String, address:String,
program:String,year:int, fee:double)
+getProgram():String
+setProgram(program:String): void
+getYear():int
+setYear(year:int):void
+getFee():double
+setFee(fee:double):void
+ display (): void
+Staff(name:String, address:String,
school:String, pay:double)
+getSchool():String
+setSchool(school:String):void
+getPay():double
+setPay (pay:double):void
+ display (): void
"Staff[Person[name=?, address=?],
school=?,pay=?]"
"Student[Person[name=?, address=?],
program=?,year=?,fee=?]"
Transcribed Image Text:Person |-name:String -address:String |+Person(name:String, address:String) +getName ():String +getAddress ():String +setAddress (address:String):void + display (): void "Person[name=?, address=?]" extends Student Staff -program:String -year:int -fee:double -school:String -pay:double +Student (name:String, address:String, program:String,year:int, fee:double) +getProgram():String +setProgram(program:String): void +getYear():int +setYear(year:int):void +getFee():double +setFee(fee:double):void + display (): void +Staff(name:String, address:String, school:String, pay:double) +getSchool():String +setSchool(school:String):void +getPay():double +setPay (pay:double):void + display (): void "Staff[Person[name=?, address=?], school=?,pay=?]" "Student[Person[name=?, address=?], program=?,year=?,fee=?]"
Expert Solution
steps

Step by step

Solved in 5 steps with 1 images

Blurred answer
Knowledge Booster
Data members
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
  • SEE MORE QUESTIONS
Recommended textbooks for you
EBK JAVA PROGRAMMING
EBK JAVA PROGRAMMING
Computer Science
ISBN:
9781337671385
Author:
FARRELL
Publisher:
CENGAGE LEARNING - CONSIGNMENT