-
Lenguaje
PSeInt (Pseudocódigo)
-
Descripción
Pedirá al usauario la nota recibida en un examen por alumno/a, y deberá mostrar un texto que recoja la nota, de la sigiente forma.
Nota entre 0 y 2 -> Muy deficiente
Nota entre 2.1 y 4.9 -> Insuficiente
Nota entre 5.0 y 6.9 -> Suficiente
Nota entre 7.0 y 8.9 -> Notable
Nota mayor de 9 -> Sobresaliente
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
Proceso NotaEnTexto
Escribir Sin Saltar "Ingresa el valor de nota:";
Leer nota;
Si nota>=0 Y nota<2.1 Entonces
Escribir "Muy deficiente";
FinSi
Si nota>=2.1 Y nota<5 Entonces
Escribir "Insuficiente";
FinSi
Si nota>=5 Y nota<7 Entonces
Escribir "Suficiente";
FinSi
Si nota>=7 Y nota<9 Entonces
Escribir "Notable";
FinSi
Si nota>=9 Entonces
Escribir "Sobresaliente";
FinSi
FinProceso
Escribir Sin Saltar "Ingresa el valor de nota:";
Leer nota;
Si nota>=0 Y nota<2.1 Entonces
Escribir "Muy deficiente";
FinSi
Si nota>=2.1 Y nota<5 Entonces
Escribir "Insuficiente";
FinSi
Si nota>=5 Y nota<7 Entonces
Escribir "Suficiente";
FinSi
Si nota>=7 Y nota<9 Entonces
Escribir "Notable";
FinSi
Si nota>=9 Entonces
Escribir "Sobresaliente";
FinSi
FinProceso