0 votes
737 views
in Programming by (98.9k points)
edited
Write an Object Oriented Program in C++, to implement inventory class to calculate total price of number of items purchased.

1 Answer

0 votes
by (98.9k points)
selected by
 
Best answer

#include <iostream>

using namespace std;

 

class inventory

{

    private:

        int   no_of_items;

        float total_price;

        float price;

    public:

        void getData(void);

        void calculate(void);

        void putData(void);

};

 

void inventory::getData(void)

{

    cout << "Enter number of items to be purchased: "<<endl ;

    cin >> no_of_items;

    cout << "Enter Price of each items purchased ";

    cin >> price;

     

}


void inventory::calculate(void)

{

total_price=(float)no_of_items*price;

cout<<"Total price of number of Items Purchased are:"<<total_price;

}

 

void inventory::putData(void){

    cout << "Items Purchasing details:"<<endl;

    cout << "Number of Items purchased is:"<< no_of_items <<endl;

cout<<"Price Per items is:" <<price<<endl;

calculate();

}

 

int main()

{

    inventory in;

    in.getData();

    in.putData();

    return 0;

}







Output::


Related questions

+1 vote
1 answer 173 views
0 votes
1 answer 1.5k views

Doubtly is an online community for engineering students, offering:

  • Free viva questions PDFs
  • Previous year question papers (PYQs)
  • Academic doubt solutions
  • Expert-guided solutions

Get the pro version for free by logging in!

5.7k questions

5.1k answers

108 comments

535 users

...