-
Lenguaje
PSeInt (Pseudocódigo)
-
Descripción
Sean N estudiantes. Lea las cuatro notas de cada estudiante e imprima la nota definitiva de cada uno, sabiendo que la nota definitiva es igual a la suma de cuatro notas multiplicada por cien, divididas entre 4 y al resultado se le suma uno.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
Proceso NotaDefinitivaDeNEstudiantes
Escribir Sin Saltar "Ingresa el valor de n:";
Leer n;
Para i<-1 Hasta n Con Paso 1 Hacer
Escribir "PROCESO ", i;
Escribir Sin Saltar "Ingresa el valor de nota 1:";
Leer nota_1;
Escribir Sin Saltar "Ingresa el valor de nota 2:";
Leer nota_2;
Escribir Sin Saltar "Ingresa el valor de nota 3:";
Leer nota_3;
Escribir Sin Saltar "Ingresa el valor de nota 4:";
Leer nota_4;
nota_definitiva <- (nota_1+nota_2+nota_3+nota_4)*100/4+1;
Escribir "Valor de nota definitiva: ", nota_definitiva;
Escribir "";
FinPara
FinProceso
Escribir Sin Saltar "Ingresa el valor de n:";
Leer n;
Para i<-1 Hasta n Con Paso 1 Hacer
Escribir "PROCESO ", i;
Escribir Sin Saltar "Ingresa el valor de nota 1:";
Leer nota_1;
Escribir Sin Saltar "Ingresa el valor de nota 2:";
Leer nota_2;
Escribir Sin Saltar "Ingresa el valor de nota 3:";
Leer nota_3;
Escribir Sin Saltar "Ingresa el valor de nota 4:";
Leer nota_4;
nota_definitiva <- (nota_1+nota_2+nota_3+nota_4)*100/4+1;
Escribir "Valor de nota definitiva: ", nota_definitiva;
Escribir "";
FinPara
FinProceso