Algoritmo detarea Definir nombre Como Caracter Definir plan,tiempo,megas Como Entero Escribir "Ingresa tu nombre" leer nombre Escribir "Ingresa un plan" Escribir "1 = A" Escribir "2 = B" Escribir "3 = C" leer plan si plan > 0 y plan < 4 Entonces si plan == 1 o plan == 2 Entonces Escribir "Ingresa el tiempo antiguedad" leer tiempo si tiempo <= 4 Entonces megas = 20 SiNo si tiempo <= 10 Entonces megas = 30 SiNo megas = 40 FinSi FinSi SiNo si plan == 3 Entonces megas = 10 FinSi FinSi Escribir "Nombre: ",nombre Escribir "Plan: ",plan Escribir "Megas: ",megas SiNo Escribir "Ingresa un plan correcto" FinSi FinAlgoritmo