-
Notifications
You must be signed in to change notification settings - Fork 0
/
pratica07exercicio01.js
196 lines (153 loc) · 7.54 KB
/
pratica07exercicio01.js
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
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
function resultado (ln) {
//var xy = ln;
if (ln == 'ln1' || ln == 'ln2' || ln == 'ln3' || ln == 'ln4' || ln == 'ln5') { // Controlando se o usuário clicou diretamente na tabela ou usou a caixa de diálogo.
if (ln == 'ln1') { // Controlando qual linha da tabela foi clicada pelo usuário.
var linha = document.getElementById("ln1");
var colunas = linha.getElementsByTagName('td');
var nomeAluno = colunas[0].firstChild.nodeValue;
var nomeMaiusc = nomeAluno;
nomeAluno = nomeAluno.toLowerCase();
} else if (ln == 'ln2') {
var linha = document.getElementById("ln2");
var colunas = linha.getElementsByTagName('td');
var nomeAluno = colunas[0].firstChild.nodeValue;
var nomeMaiusc = nomeAluno;
nomeAluno = nomeAluno.toLowerCase();
} else if (ln == 'ln3') {
var linha = document.getElementById("ln3");
var colunas = linha.getElementsByTagName('td');
var nomeAluno = colunas[0].firstChild.nodeValue;
var nomeMaiusc = nomeAluno;
nomeAluno = nomeAluno.toLowerCase();
} else if (ln == 'ln4') {
var linha = document.getElementById("ln4");
var colunas = linha.getElementsByTagName('td');
var nomeAluno = colunas[0].firstChild.nodeValue;
var nomeMaiusc = nomeAluno;
nomeAluno = nomeAluno.toLowerCase();
} else if (ln == 'ln5') {
var linha = document.getElementById("ln5");
var colunas = linha.getElementsByTagName('td');
var nomeAluno = colunas[0].firstChild.nodeValue;
var nomeMaiusc = nomeAluno;
nomeAluno = nomeAluno.toLowerCase();
}
} else {
var nomeAluno = document.getElementById("nome").value.toLowerCase();
function capitalize(string) { // funcao capitalize() >> torna a primeira letra maiúscula.
return string.charAt(0).toUpperCase() + string.slice(1).toLowerCase();
}
var nomeMaiusc = capitalize(nomeAluno); // Atribuindo à variável 'nomeMaiusc'o valor da chamada da função capitalize().
}
// Trabalhando a média atualizada.
var corpo = document.getElementById("tabela");
var notas = corpo.getElementsByTagName("td");
var media = 0;
var numNotas = 0;
var temp = 0;
for (i = 10; i < notas.length; i += 6) {
temp = notas[i].firstChild.nodeValue; // Recolhendo as notas numa variável temporária para fazer o parseFloat().
temp = parseFloat(temp);
media += temp; // Somando cada valor númerico à variável 'media'.
temp = 0;
numNotas += 1; // Registrando a quantidade de notas obtidas.
}
media /= numNotas;
document.getElementById("mediaPost").innerHTML = media; // Transportando a média atualizada para a célula correspondente.
//var xy = colunas[0].firstChild.nodeValue;
//console.log(nomeAluno);
/*if (nomeAluno == 'gisele') {
alert("GISELE Ok!");
} else {
alert("desconhecido!");
}*/
/*for (j = 0; j < nomeAluno.length; j++) {
console.log(nomeAluno[j]);
}*/
switch (nomeAluno) {
case 'ana':
var linha = document.getElementById("ln1");
var colunas = linha.getElementsByTagName('td');
var nt = colunas[4].firstChild.nodeValue;
var ft = colunas[5].firstChild.nodeValue;
if (nt >= 70 && ft < 3) {
alert(nomeMaiusc + " foi Aprovado(a) - Nota final: " + nt + "; Faltas: " + ft);
} else if (nt >= 70 && ft >= 3) {
alert(nomeMaiusc + " foi Reprovado(a) pois apesar de possuir nota suficiente sua frequência é insuficiente - Nota: " + nt + "; Faltas: " + ft);
} else if (nt < 70 && ft < 3) {
alert(nomeMaiusc + " foi Reprovado(a) pois apesar de possuir frequência suficiente sua nota é insuficiente - Nota: " + nt + "; Faltas: " + ft);
} else {
alert(nomeMaiusc + " foi Reprovado(a) pois não obteve nem nota e nem frequência suficientes - Nota: " + nt + "; Faltas: " + ft);
}
break;
case 'gisele':
var linha = document.getElementById("ln2");
var colunas = linha.getElementsByTagName('td');
var nt = colunas[4].firstChild.nodeValue;
var ft = colunas[5].firstChild.nodeValue;
if (nt >= 70 && ft < 3) {
alert(nomeMaiusc + " foi Aprovado(a) - Nota final: " + nt + "; Faltas: " + ft);
} else if (nt >= 70 && ft >= 3) {
alert(nomeMaiusc + " foi Reprovado(a) pois apesar de possuir nota suficiente\nsua frequência é insuficiente - Nota: " + nt + "; Faltas: " + ft);
} else if (nt < 70 && ft < 3) {
alert(nomeMaiusc + " foi Reprovado(a) pois apesar de possuir frequência suficiente\nsua nota é insuficiente - Nota: " + nt + "; Faltas: " + ft);
} else {
alert(nomeMaiusc + " foi Reprovado(a) pois não obteve nem nota e nem frequência suficientes\nNota: " + nt + "; Faltas: " + ft);
}
break;
case 'jane':
var linha = document.getElementById("ln3");
var colunas = linha.getElementsByTagName('td');
var nt = colunas[4].firstChild.nodeValue;
var ft = colunas[5].firstChild.nodeValue;
if (nt >= 70 && ft < 3) {
alert(nomeMaiusc + " foi Aprovado(a) - Nota final: " + nt + "; Faltas: " + ft);
} else if (nt >= 70 && ft >= 3) {
alert(nomeMaiusc + " foi Reprovado(a) pois apesar de possuir nota suficiente\nsua frequência é insuficiente - Nota: " + nt + "; Faltas: " + ft);
} else if (nt < 70 && ft < 3) {
alert(nomeMaiusc + " foi Reprovado(a) pois apesar de possuir frequência suficiente\nsua nota é insuficiente - Nota: " + nt + "; Faltas: " + ft);
} else {
alert(nomeMaiusc + " foi Reprovado(a) pois não obteve nem nota e nem frequência suficientes\nNota: " + nt + "; Faltas: " + ft);
}
break;
case 'jorge':
var linha = document.getElementById("ln4");
var colunas = linha.getElementsByTagName('td');
var nt = colunas[4].firstChild.nodeValue;
var ft = colunas[5].firstChild.nodeValue;
if (nt >= 70 && ft < 3) {
alert(nomeMaiusc + " foi Aprovado(a) - Nota final: " + nt + "; Faltas: " + ft);
} else if (nt >= 70 && ft >= 3) {
alert(nomeMaiusc + " foi Reprovado(a) pois apesar de possuir nota suficiente\nsua frequência é insuficiente - Nota: " + nt + "; Faltas: " + ft);
} else if (nt < 70 && ft < 3) {
alert(nomeMaiusc + " foi Reprovado(a) pois apesar de possuir frequência suficiente\nsua nota é insuficiente - Nota: " + nt + "; Faltas: " + ft);
} else {
alert(nomeMaiusc + " foi Reprovado(a) pois não obteve nem nota e nem frequência suficientes\nNota: " + nt + "; Faltas: " + ft);
}
break;
case 'marina':
var linha = document.getElementById("ln5");
var colunas = linha.getElementsByTagName('td');
var nt = colunas[4].firstChild.nodeValue;
var ft = colunas[5].firstChild.nodeValue;
if (nt >= 70 && ft < 3) {
alert(nomeMaiusc + " foi Aprovado(a) Nota final: " + nt + "; Faltas: " + ft);
} else if (nt >= 70 && ft >= 3) {
alert(nomeMaiusc + " foi Reprovado(a) pois apesar de possuir nota suficiente\nsua frequência é insuficiente - Nota: " + nt + "; Faltas: " + ft);
} else if (nt < 70 && ft < 3) {
alert(nomeMaiusc + " foi Reprovado(a) pois apesar de possuir frequência suficiente\nsua nota é insuficiente - Nota: " + nt + "; Faltas: " + ft);
} else {
alert(nomeMaiusc + " foi Reprovado(a) pois não obteve nem nota e nem frequência suficientes\nNota: " + nt + "; Faltas: " + ft);
}
break;
default:
alert("Aluno desconhecido!");
}
/* for (i = 0; i < colunas.length; i++) {
alert("conteudo da coluna " + i + " -> " + colunas[i].firstChild.nodeValue);
} */
}
document.addEventListener('keydown', function (event) { // função que chama a função 'resultado()' ao clicar ENTER; É necessário acrescentar type="text/javascript" no <script> do HTML.
if (event.keyCode !== 13) return
resultado();
});