viernes, 20 de marzo de 2020

Selecciona un numero entre el 1 y el 5



print("Dame un numero del 1--5=====> ")
num=int(input(""))

if num==5:
    print("Es el numero 5")
elif num==4:
    print("Es el numero 4")
elif num==3:
    print("Es el numero 3")
elif num==2:
    print("Es el numero 2")
elif num==1:
    print("Es el numero 1")
else:
    print("Error elige un numero entre 1--5")

No hay comentarios.:

Publicar un comentario