Advertisement
fenix15100

EX4_AF3_PT4

Oct 16th, 2014
258
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.38 KB | None | 0 0
  1. #Programa: Fran Camacho
  2. #EX4
  3.  
  4. num1=int(input("Dime el primer numero "))
  5. num2=int(input("Dime el segundo numero "))
  6. num3=int(input("Dime el tercer numero "))
  7.  
  8. if (num1>num2)and(num1>num3):
  9.     print("El ",num1," es el mas grande")
  10. if (num2>num1) and (num2>num3):
  11.     print("El ",num2," es el mas grande")
  12. if (num3>num1) and (num3>num2):
  13.     print("El ",num3," es el mas grande")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement