-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.js
53 lines (40 loc) · 1.28 KB
/
main.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
const notas = [];
let notasIngresadas = "";
let notaInput = "";
const estudiante = {
nombre: "",
apellido: "",
};
const agregarNota = () => {
notaInput = prompt("Ingresa una nota:");
if (isNaN(notaInput)) {
alert("Ingresa una nota válida");
return;
}
notas.push(Number(notaInput));
notasIngresadas += `${notaInput}, `;
};
const calcularPromedio = () => {
if (notas.length === 0) {
alert("No ingresaste ninguna nota");
return;
}
const sumaNotas = notas.reduce((suma, nota) => suma + nota);
const promedio = sumaNotas / notas.length;
const mensaje = `Tu promedio es: ${promedio.toFixed(2)}`;
if (promedio < 6) {
alert(mensaje + "\nNo aprobaste. Seguí intentando");
} else {
alert(mensaje + "\n¡Felicitaciones, aprobaste!");
}
};
estudiante.nombre = prompt("Ingresa tu nombre:");
estudiante.apellido = prompt("Ingresa tu apellido:");
do {
agregarNota();
} while (confirm("¿Deseas agregar otra nota?"));
calcularPromedio();
const estudianteInfo = `Nombre completo: ${estudiante.nombre} ${estudiante.apellido}
Notas ingresadas: ${notasIngresadas}
Promedio: ${(notas.length > 0) ? (notas.reduce((suma, nota) => suma + nota) / notas.length).toFixed(2) : "N/A"}`;
alert(estudianteInfo);