Advertisement
diegokr

Untitled

Nov 9th, 2019
240
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.43 KB | None | 0 0
  1. #Declaracion de constantes
  2. ccotizacion=63.08
  3.  
  4. #Declaracion de variables
  5. montopesos=0.00
  6. montodolar=0.00
  7. nombre=""
  8.  
  9. #Ingreso de datos
  10. #ing. nombre
  11. print("Ingrese nombre")
  12. nombre=input()
  13.  
  14. #Ing. de monto en peso
  15. montopesos=float(input("Ingrese monto en pesos:\n"))
  16.  
  17. #Conversion
  18. montodolar=montopesos/ccotizacion
  19.  
  20. #Salida
  21. print("Nombre:",nombre)
  22. print("Monto en pesos:",montopesos)
  23. print("Monto en doláres:",montodolar)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement