-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path30.cpp
More file actions
88 lines (66 loc) · 1.49 KB
/
30.cpp
File metadata and controls
88 lines (66 loc) · 1.49 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
/*
@Author: Amritanshu Sikdar
Session: 2018-'19
Repository: https://github.com/amritanshusikdar/CS30PracticalQuestion
*/
// Program to demonstrate retail shopping
#include<iostream.h>
#include<conio.h>
#include<stdio.h>
#include<string.h>
class iteminfo
{
private:
int iCode;
char iName[10];
int price;
unsigned int qty;
float discount, netPrice;
public:
iteminfo()
{
iCode = price = qty = discount = netPrice = 0;
strcpy(iName,"NULL");
}
void buy()
{
cout << "Enter product details: " << endl;
cout << "Item code: ";
cin >> iCode;
cout << "Item name: ";
gets(iName);
cout << "Price: ";
cin >> price;
cout << "Quantity: ";
cin >> qty;
discount = findDisc(qty);
netPrice = (price*qty) - discount;
}
int findDisc(int qty)
{
if(qty <= 10)
discount = 0;
else if(qty >= 11 && qty < 20)
discount = 15;
else discount = 20;
return discount;
}
void showAll()
{
cout << "Item code: " << iCode << endl;
cout << "Item name: " << iName << endl;
cout << "Price: " << price << endl;
cout << "Quantity: " << qty << endl;
cout << "Discount: " << discount << endl;
cout << "Net price: " << netPrice << endl;
};
~iteminfo(){};
};
void main()
{
clrscr();
iteminfo item;
item.buy();
item.showAll();
getch();
}