Created
March 30, 2021 19:24
-
-
Save Mau5trakt/5f8cd3e7f2e9b8e65631f7cd4508780c to your computer and use it in GitHub Desktop.
Código corregido y esteticamente ordenado
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
''' Pide al usuario que introduzca 5 números e imprime | |
el numero menor y el número mayor ''' | |
nombre = input("Introduzca su nombre: ") | |
print("hola, ", nombre ,"ingrese 5 números y luego se le imprimira el número mayor y el número menor") | |
a = int(input("Ingrese un número: ")) | |
b = int(input("Ingrese un número: ")) | |
c = int(input("Ingrese un número: ")) | |
d = int(input("Ingrese un número: ")) | |
e = int(input("Ingrese un número: ")) | |
print("El numero mayor entre {} {} {} {} {} es: {} " | |
.format(a,b,c,d,e, max(a,b,c,d,e))) | |
print("El numero menor entre {} {} {} {} {} es: {} " | |
.format(a,b,c,d,e, min(a,b,c,d,e))) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment