Instructions:
Please read the following instructions carefully before submitting assignment:
It should be clear that your assignment will not get any credit if:
§ The assignment is submitted after due date.
§ The assignment is submitted via email.
§ The assignment is copied from Internet or from any other student.
§ The submitted assignment does not open or file is corrupt.
§ It is in some format other than .cpp.
1) Note: You are supposed to submit your assignment in .cpp format. Any other formats like scan images, PDF, zip, doc, rar and bmp etc will not be accepted. All types of plagiarism are strictly prohibited.
Student Learning Outcomes
Students will be able to:
o Define base and derived classes with their respective data members and member functions
o Implement Multiple Inheritance.
GOOD LUCK!
Problem Statement
Consider yourself working as a software engineer in a marketing company of both hardware and software. The IT manager has given you a task to model a part of their simple advertising system. In this system, there will be four classes named Item, Sales, hwItem (Hardware Item), swItem (Software Item)
Steps to follow:
1. Create a base class Item that should store the title of the item (a string) and its price (a float).
2. Then create another base class called Sales which should contain an array of three floats so that it can record the sale in rupees of a particular item for the last three months.
3. After that derive two classes hwItem (hardware item) and swItem(software item) from both Item and Sales classes. The hwItemclass should hold category of the item and its original manufacturer (om), whereas the swItem class should contain the type of the software and the Operating System (os) under which it works.
4. Each class should have its own getData()and displayData() functions to input and output data respectively.
The following hierarch of classes should be used for the assignment solution.
Sample Output:
Lectures Covered: This assignment covers Lecture # 23-32.
Deadline: Your assignment must be uploaded/submitted at or before
Solution:
/** https://virtualuniversitystudies.blogspot.com/**/
#include<iostream>using namespace std;
class Item{ protected: string Title; float price; public : void getItem()
{ cout<<"Please Enter product Title : "; cin>>Title; cout<<"Please Enter Price : "; cin>> price; } void displayItem() { cout<<"\nTitle and price : " <<Title <<"\t" <<price; }};class Sales{ protected : float sale_per_item[3]; public : void getSales() { cout<<"Enter Sale Figures for Three monthes <press Enter After Each entery > : "; for(int i=0; i<3; i++) { cin>>sale_per_item[i]; } } void displaySales() { cout<<"\nThese are sales figures for last three monthes: \t"; for(int i=0; i<3; i++) { cout<< sale_per_item[i]<<"\t"; } cout<<"\n\n*************************\n\n"; }
};class hardItem : Item , Sales{ private : string category; string O_Manufacturer; public : void gethardItem() { getItem(); cout<< "Please Enter Caqtegory : "; cin>> category; cout<<"Please Enter manufacturer : "; cin >>O_Manufacturer; getSales(); } void displayhardItem() { displayItem(); cout<<"\nCategory and Manfucaturer:"<<category << "\t" <<O_Manufacturer ; displaySales(); }};class softItem :Item , Sales{ private : string category ; string OS; public : void getsoftItem() { getItem(); cout<<"Please Enter category : "; cin >> category; cout<<"Please enter Operating System : "; cin >>OS; getSales(); } void displaysoftItem() { displayItem(); cout<<"\nCategory and Operating System : "<< category << "\t" <<OS ; displaySales(); }};main(){ softItem soft1; hardItem hwd1; hwd1.gethardItem(); hwd1.displayhardItem(); soft1.getsoftItem(); soft1.displaysoftItem();}