-
Notifications
You must be signed in to change notification settings - Fork 0
/
Question20.c
107 lines (89 loc) · 3.83 KB
/
Question20.c
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
#include <stdio.h>
// Code made for exam.
int main() {
int quantity[100], orderSize;
char orders[100];
float totalPurchase, totalDiscount, grandTotal = 0.00;
printf("Enter the total number of orders: ");
scanf("%d", &orderSize);
printf("\nATTENTION: BUNDLE BUYING IS NOT AVAILABLE DUE TO CUSTOMER COMPLAINTS. \n");
printf("BY MANAGEMENT\n");
printf("\nITEMS \n");
printf("A. Item_A \n");
printf("B. Item_B \n");
printf("C. Item_C \n");
printf("D. Item_D \n");
printf("E. Item_E \n");
for (int i = 1; i <= orderSize; i++) {
printf("\nEnter Order %d: ", i);
scanf(" %c",&orders[i]);
printf("Quantity: ");
scanf("%d",&quantity[i]);
}
for (int i = 1; i <= orderSize; i++) {
if (orders[i] == 'A') {
totalPurchase = totalPurchase + 3400.00 * quantity[i];
if (quantity[i] >= 3) {
totalDiscount = totalDiscount + (3400.00 * quantity[i]) * 0.18;
grandTotal = grandTotal + (3400.00 * quantity[i]) * 0.18;
} else if (quantity[i] == 2) {
totalDiscount = totalDiscount + (3400.00 * quantity[i]) * 0.15;
grandTotal = grandTotal + (3400.00 * quantity[i]) * 0.15;
} else {
grandTotal = grandTotal + 3400.00 * quantity[i];
}
}
if (orders[i] == 'B') {
totalPurchase = totalPurchase + 1034.00 * quantity[i];
if (quantity[i] >= 3) {
totalDiscount = totalDiscount + (1034.00 * quantity[i]) * 0.18;
grandTotal = grandTotal + (1034.00 * quantity[i]) * 0.18;
} else if (quantity[i] == 2) {
totalDiscount = totalDiscount + (1034.00 * quantity[i]) * 0.15;
grandTotal = grandTotal + (1034.00 * quantity[i]) * 0.15;
} else {
grandTotal = grandTotal + 1034.00 * quantity[i];
}
}
if (orders[i] == 'C') {
totalPurchase = totalPurchase + 240.50 * quantity[i];
if (quantity[i] >= 3) {
totalDiscount = totalDiscount + (240.50 * quantity[i]) * 0.18;
grandTotal = grandTotal + (240.50 * quantity[i]) * 0.18;
} else if (quantity[i] == 2) {
totalDiscount = totalDiscount + (240.50 * quantity[i]) * 0.15;
grandTotal = grandTotal + (240.50 * quantity[i]) * 0.15;
} else {
grandTotal = grandTotal + 240.50 * quantity[i];
}
}
if (orders[i] == 'D') {
totalPurchase = totalPurchase + 2019.00 * quantity[i];
if (quantity[i] >= 3) {
totalDiscount = totalDiscount + (2019.00 * quantity[i]) * 0.18;
grandTotal = grandTotal + (2019.00 * quantity[i]) * 0.18;
} else if (quantity[i] == 2) {
totalDiscount = totalDiscount + (2019.00 * quantity[i]) * 0.15;
grandTotal = grandTotal + (2019.00 * quantity[i]) * 0.15;
} else {
grandTotal = grandTotal + 2019.00 * quantity[i];
}
}
if (orders[i] == 'E') {
totalPurchase = totalPurchase + 92.00 * quantity[i];
if (quantity[i] >= 3) {
totalDiscount = totalDiscount + (92.00 * quantity[i]) * 0.18;
grandTotal = grandTotal + (92.00 * quantity[i]) * 0.18;
} else if (quantity[i] == 2) {
totalDiscount = totalDiscount + (92.00 * quantity[i]) * 0.15;
grandTotal = grandTotal + (92.00 * quantity[i]) * 0.15;
} else {
grandTotal = grandTotal + 92.00 * quantity[i];
}
}
}
printf("\nTotal Purchase: Php %.2f", totalPurchase);
printf("\nTotal Discount: Php %.2f", totalDiscount);
printf("\nTotal: Php %.2f", grandTotal);
return 0;
}