Algoritmo detarea definir total como real definir n como entero Escribir "Ingresa el numero de alumnos" Leer n Si n >= 100 Entonces total = n * 65 SiNo Si n >= 50 Entonces total = n * 70 SiNo Si n >= 30 Entonces total = n * 95 SiNo total = 4000 FinSi FinSi FinSi Escribir "El total a pagar por alumno es: $", total / n Escribir "El total a pagar por la renta del autobus es: $",total FinAlgoritmo