LEER TRES NUMEROS Y DECIR CUAL ES EL MAYOR
INICIO
DEFINO: a, b, c;
INICIALIZAR: a=b=c=0;
IMPRIMIR: “digite el primer número”
LEER: a;
IMPRIMIR: “digite el segundo numero”
LEER: b;
IMPRIMIR: “digite el tercer numero”
LEER: C;
SI ((a>b) &&(a>c))
{
IMPRIMIR (“el numero mayor es a”);
}
Si ((b>a) && (b>c))
{
IMPRIMIR (“el numero mayor es b”);
}
Si ((c>a) && (c>b))
{
IMPRIMIR (“el numero mayor es c”);
}
FIN
PRUEBA DE ESCRITORIO
DIAGRAMA DE FLUJO
No hay comentarios:
Publicar un comentario