-
Notifications
You must be signed in to change notification settings - Fork 0
/
Program.cs
155 lines (115 loc) · 5.98 KB
/
Program.cs
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
143
144
145
146
147
148
149
150
151
152
153
154
155
Console.WriteLine("---------------------------");
Console.WriteLine(" CALCULADORA DE MÈDIA ");
Console.WriteLine("---------------------------");
string novamente = "vazia";
do
{
Console.Write("DIGITE QUANTAS NOTAS VOCÊ DESEJA CALCULAR: ");
int numeroNotas = int.Parse(Console.ReadLine());
while ((numeroNotas > 20) | (numeroNotas < 0))
{
Console.Clear();
Console.WriteLine("---------------------------");
Console.WriteLine(" CALCULADORA DE MÈDIA ");
Console.WriteLine("---------------------------");
Console.Write("POR FAVOR DIGITE UMA QUANTIA DE NOTAS VALIDAS: ");
numeroNotas = int.Parse(Console.ReadLine());
}
double[] notas = new double[numeroNotas];
for (int i = 0; i < numeroNotas; i++)
{
Console.Clear();
Console.WriteLine("---------------------------");
Console.WriteLine(" CALCULADORA DE MÈDIA ");
Console.WriteLine("---------------------------");
Console.Write("DIGITE A " + (i + 1) + "° NOTA: ");
notas[i] = double.Parse(Console.ReadLine());
while ((notas[i] > 10) | (notas[i] < 0))
{
Console.Clear();
Console.WriteLine("---------------------------");
Console.WriteLine(" CALCULADORA DE MÈDIA ");
Console.WriteLine("---------------------------");
Console.Write("DIGITE UMA NOTA VALIDA POR FAVOR: ");
notas[i] = double.Parse(Console.ReadLine());
}
}
Console.Clear();
Console.WriteLine("---------------------------");
Console.WriteLine(" CALCULADORA DE MÈDIA ");
Console.WriteLine("---------------------------");
Console.WriteLine("AS NOTAS POSSUEM PESO? s/n ");
char respostas;
respostas = Convert.ToChar(Console.ReadLine());
Boolean vdd = respostas == 's' | respostas == 'n';
while (vdd == false)
{
Console.Clear();
Console.WriteLine("---------------------------");
Console.WriteLine(" CALCULADORA DE MÈDIA ");
Console.WriteLine("---------------------------");
Console.Write("POR FAVOR DIGITE UMA RESPOSTA VALIDA: ");
respostas = Convert.ToChar(Console.ReadLine());
vdd = respostas == 's' | respostas == 'n';
}
double[] pesos = new double[numeroNotas];
double somaPesos = 0;
double somaNotas = 0;
double media = 0;
Console.Clear();
Console.WriteLine("---------------------------");
Console.WriteLine(" CALCULADORA DE MÈDIA ");
Console.WriteLine("---------------------------");
if (respostas == 's')
{
for (int p = 0; p < numeroNotas; p++)
{
Console.WriteLine("DIGITE O PESO DA " + (p + 1) + "° NOTA");
pesos[p] = double.Parse(Console.ReadLine());
while ((pesos[p] > 20) | (pesos[p] < 0))
{
Console.Clear();
Console.WriteLine("---------------------------");
Console.WriteLine(" CALCULADORA DE MÈDIA ");
Console.WriteLine("---------------------------");
Console.Write("POR FAVOR DIGITE UMA RESPOSTA VALIDA: ");
pesos[p] = double.Parse(Console.ReadLine());
}
}
for (int c = 0; c < numeroNotas; c++)
{
notas[c] = notas[c] * pesos[c];
somaPesos = somaPesos + pesos[c];
}
for (int s = 0; s < numeroNotas; s++)
{
somaNotas = somaNotas + notas[s];
}
Console.Clear();
Console.WriteLine("---------------------------");
Console.WriteLine(" CALCULADORA DE MÈDIA ");
Console.WriteLine("---------------------------");
media = somaNotas / somaPesos;
Console.WriteLine("SUA MÈDIA È IGUAL A: " + media);
}
else
{
for (int s = 0; s < numeroNotas; s++)
{
somaNotas = somaNotas + notas[s];
}
Console.Clear();
Console.WriteLine("---------------------------");
Console.WriteLine(" CALCULADORA DE MÈDIA ");
Console.WriteLine("---------------------------");
media = somaNotas / numeroNotas;
Console.WriteLine("SUA MÈDIA È IGUAL A: " + media);
}
Console.Clear();
Console.WriteLine("---------------------------");
Console.WriteLine(" CALCULADORA DE MÈDIA ");
Console.WriteLine("---------------------------");
Console.WriteLine("DIGITE *sim* PARA USAR O PROGRAMA NOVAMENTE");
Console.WriteLine("OU DIGITE QUALQUER OUTRA COISA PARA SAIR");
novamente = Console.ReadLine();
} while (novamente == "sim");