CPP Project Final 23-24
CPP Project Final 23-24
(Third Semester)
In the subject of
OBJECT ORIENTED PROGRAMMMING USING C++
By
MANASI MUNDE (22CM053)
GAURI SAHU (22CM057)
SANIKA SANGLE (22CM058)
ADITYA BHANGALE (23CM402)
SACHIN JADHAV (23CM204)
Submitted To
Certificate
This is to certify that :
Mr./Ms. Manasi Munde, Gauri Sahu, Sanika Sangle, Aditya
Bhangale, Sachin Jadhav. Identity Code 22CM053, 22CM057,
22CM058, 23CM402, 23CM204. of Third Semester Diploma in
Computer Engineering has satisfactorily completed the micro
project entitled “Develop a c++ program on grocery store
manager and bill generator”—object oriented programming
using C++ (oop) for the academic year 2023-24as prescribed in
curriculum.
Plan A
Plan B
#include<fstream>
class shopping {
private:
int pcode;
float price;
float dis;
string pname;
public:
void menu();
void administrator();
void buyer();
void add();
void edit();
void rem();
void list();
void receipt();
};
void shopping::menu() {
int choice;
do {
case 1:
administrator();
break;
case 2:
buyer();
break;
case 3:
exit(0);
default:
} while(true);
void shopping::administrator() {
int choice;
do {
switch(choice) {
case 1:
add();
break;
case 2:
edit();
break;
case 3:
rem();
break;
case 4:
return;
default:
} while(true);
int main() {
shopping s;
s.menu();
return 0;
}
3.OUTPUT
4.CONCLUSION
THANKYOU …