blob: c22806896d777be9f6246079d9bebeb5a1f60157 (
plain) (
blame)
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
|
CST 116
Austin Guertin
9a 10.5 pg 247 #1
1.
#include <iostream>
#include <string>
using namespace std;
int main()
{
int scores[10];
char grades[10];
cout << "Enter numeric grades separated by spaces:";
for (int i = 0; i < 10; i++)
{
cin >> scores[i];
}
for (int i = 0; i < 10; i++)
{
if (scores[i] >= 92)
grades[i] = 'A';
else if (scores[i] >= 84)
grades[i] = 'B';
else if (scores[i] >= 75)
grades[i] = 'C';
else if (scores[i] >= 65)
grades[i] = 'D';
else
grades[i] = 'F';
}
double avg = 0;
int aCount = 0;
int bCount = 0;
int cCount = 0;
int dCount = 0;
int fCount = 0;
for (int i = 0; i < 10; i++)
{
avg += scores[i];
if (grades[i] == 'A')
aCount++;
else if (grades[i] == 'B')
bCount++;
else if (grades[i] == 'C')
cCount++;
else if (grades[i] == 'D')
dCount++;
else
fCount++;
}
avg = avg / 10;
for (int i = 0; i < 10; i++)
{
cout << "Score " << (i + 1) << ": " << scores[i] << ", and the grade is a(n) " << grades[i] << endl;
}
cout << "\nAverage of all the scores is: " << avg << " \n\n";
cout << "\nNumber of A's is/are: " << aCount << " \n";
cout << "\nNumber of B's is/are: " << bCount << " \n";
cout << "\nNumber of C's is/are: " << cCount << " \n";
cout << "\nNumber of D's is/are: " << dCount << " \n";
cout << "\nNumber of F's is/are: " << fCount << " \n\n";
}
9b 10.6 pg 253 #1
1.
10a 9.4 pg 214 #2
2.
10b 9.5 pg 216 #7
7.
|