Answered step by step
Verified Expert Solution
Question
1 Approved Answer
C++ source code. Instructions: In this assignment, you will design various classes and write a program to computerize the billing system of a hospital. Download
C++ source code.
Instructions:
In this assignment, you will design various classes and write a program to computerize the billing system of a hospital.
- Download the instructions document.
- Download the personType class files:
- personType.h
- personType.cpp
- Complete the steps outlined in the instructions document.
- Submit your source code (.h and .cpp files) to the drop-box. You may submit a .zip file containing all your code so that you only need to upload one file to the drop box.
- Copy your code to a Word document and submit this document to the drop-box for Turn-it-in originality checking. Plagiarism is a violation of SPC's academic policy and will not be tolerated.
- Review the rubric for this assignment in order to understand how your work will be evaluated
Instruction Document
personType.h
personType.cpp
Hospital Billing System In this assignment, you will design various classes and write a program to computerize the billing system of a hospital. Begin by downloading the personType class (.h and .cpp files). 1. Design the class doctorType, inherited from the class personType, with an additional data member to store a doctor's specialty. Add appropriate constructors and member functions to initialize, access, and manipulate the data members. 2. Design the class billType with data members to store a patient's ID and a patient's hospital charges, such as pharmacy charges for medicine, doctor's fee, and room charges. Add appropriate constructors and member functions to initialize, access, and manipulate the data members. 3. Design the class patientType, inherited from the class personType, with additional data members to store a patient's ID, age, date of birth, attending physician's name, the date when the patient was admitted in the hospital, and the date when the patient was discharged from the hospital. (Use the class dateType to store the date of birth, admit date, discharge date, and the class doctorType to store the attending physician's name. Add appropriate constructors and member functions to initialize, access, and manipulate the data members. 4. Write a program to test your classes. To hand in: Submit your source code (.h and .cpp files) to the drop-box. You may submit a .zip file containing all your code so that you only need to upload one file to the drop box. #includeStep 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