Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- Proceso practica07
- // Que lea dos numeros y los imprima en forma ascendente.
- num1 <- 0;
- num2 <- 0;
- Escribir "Dame el primer numero";
- Leer num1;
- Escribir "Dame el segundo numero";
- Leer num2;
- Si num1 > num2 Entonces
- Escribir "Orden Ascendente:";
- Escribir num2;
- Escribir num1;
- Sino
- Escribir "Orden Ascendente:";
- Escribir num1;
- Escribir num2;
- FinSi
- FinProceso
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement