-
Notifications
You must be signed in to change notification settings - Fork 0
/
script.js
21 lines (16 loc) · 826 Bytes
/
script.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
document.getElementById("bnt").onclick = function (e) {
const primeiraNota = parseFloat(document.getElementById("number-1").value);
const segundaNota = parseFloat(document.getElementById("number-2").value);
const terceiraNota = parseFloat(document.getElementById("number-3").value);
const quartaNota = parseFloat(document.getElementById("number-4").value);
const quintaNota = parseFloat(document.getElementById("number-5").value);
const notaFinal = ((primeiraNota + segundaNota + terceiraNota + quartaNota + quintaNota) / 5).toFixed(1);
let resultado;
if (notaFinal >= 6){
resultado = "Aprovado";
}
else {
resultado = "Reprovado";
}
document.getElementById("resultado").innerHTML = `sua nota foi <em>${notaFinal}</em> <em>${resultado}</em>`
}