Answered step by step
Verified Expert Solution
Question
1 Approved Answer
Programming 2 (C++) Please write the code clearly from the compilre The class Medicine has the private data members name, disease of type string, dosage
Programming 2 (C++)
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 Please write the code clearly from the compilre
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