Design the class Bill with data members to store a patient's ID and the patient's hospital charges such as pharmacy charges for medicine, the doctor's fee, and the room charges. Add appropriate constructors and methods to initialize, access, and manipulate the data members.
1
Expert's answer
2012-06-07T09:41:45-0400
/* * Design the class Bill with data members to store a patient's ID and the patient's hospital charges * such as pharmacy charges for medicine, the doctor's fee, and the room charges. * Add appropriate constructors and methods to initialize, access, and manipulate the data members. */ public class Bill {
Comments
Leave a comment