-
Notifications
You must be signed in to change notification settings - Fork 0
/
Example_2_ParalelArrays.cpp
142 lines (140 loc) · 3.15 KB
/
Example_2_ParalelArrays.cpp
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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
#include <iostream>
using namespace std;
const int length = 5;
string name[length] = {"Mild", "Medium", "Sweet", "Hot", "Zesty"};
int quantity[length];
void storeSales();
int totalSales();
void specificSales();
int getlargest();
void mostSelled();
int getsmallest();
void leastselled();
int main()
{
int option = -1;
while (option != 6)
{
cout << "Press 1 to add sale by quantity " << endl;
cout << "Press 2 to view sale by quantity " << endl;
cout << "Press 3 to view total sale" << endl;
cout << "Press 4 view most selled product" << endl;
cout << "Press 5 view least selled product" << endl;
cout << "Press 0 to Exit ...";
cin >> option;
if (option == 0)
{
break;
}
else if (option == 1)
{
storeSales();
}
else if (option == 2)
{
specificSales();
}
else if (option == 3)
{
cout << "Total salled number is " << totalSales();
}
else if (option == 4)
{
mostSelled();
cout << "Most Salled item wise..." << endl;
for (int i = 0; i < length; i++)
{
cout << name[i] << "\t\t" << quantity[i] << endl;
}
}
else if (option == 5)
{
leastselled();
cout << "Least Salled item wise..." << endl;
for (int i = 0; i < length; i++)
{
cout << name[i] << "\t\t" << quantity[i] << endl;
}
}
else
{
break;
}
}
}
void storeSales()
{
int number = -1;
for (int i = 0; i < length; i++)
{
cout << "Enter sold number of " << name[i] << " pasta : ";
cin >> quantity[i];
}
}
int totalSales()
{
int sum = 0;
for (int i = 0; i < length; i++)
{
sum += quantity[i];
}
return sum;
}
void specificSales()
{
cout << "Sr.# \t Pasta \t Quantity" << endl;
for (int i = 0; i < length; i++)
{
cout << i + 1 << "\t" << name[i] << "\t\t" << quantity[i] << endl;
}
}
int getlargest()
{
int index, max;
max = quantity[0];
for (int i = 1; i < length; i++)
{
if (quantity[i] < max)
{
max = quantity[i];
index = i;
}
}
return index;
}
void mostSelled()
{
int index, temp = 0;
for (int i = 0; i < length; i++)
{
index = getlargest();
temp = quantity[index];
quantity[index] = quantity[i];
quantity[i] = temp;
}
}
int getsmallest()
{
int index, max;
max = quantity[0];
for (int i = 1; i < length; i++)
{
if (quantity[i] > max)
{
max = quantity[i];
index = i;
}
}
return index;
}
void leastselled()
{
int index, temp = 0;
for (int i = 0; i < length; i++)
{
index = getlargest();
temp = quantity[index];
quantity[index] = quantity[i];
quantity[i] = temp;
}
}