Question: programming 2 (C++) please write the codes CLEARLY by using C++ The class Medicine has the private data members name, disease of type string, dosage
The class Medicine has the private data members name, disease of type string, dosage of type integer, and price of type float. The class also has the following public member functions: Implement the class and its member functions. Use the following main program: int main( Medicine mOne, mTwo; mOne.set(); mOne.print () ; m Two =mOne.extraMedicine(); mTwo.print O; return 0 ; Sample input / output: Enter the nane of the medicine:-Panadol Enter the disease name: Headache Enter the dosage: 1e Enter the price: 13 The name of the medicine is: Panadol The disease name is: Headache The dosage 1s: 16 The price is; 13 The name of the medicine is: Panadolfxtra The disease nane Ist Headache. The dosage is: 13 The price is: 16.25
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
