Advertisement
jpvieiraa

Untitled

Mar 16th, 2018
136
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.59 KB | None | 0 0
  1. http://winhost.cic.pt/ip/logged/concurso.aspx/url
  2. q=int(input())
  3. preço=int(input())
  4. cor=input()
  5. preçot=q*preço
  6. if(q>=5):
  7. desconto=10
  8. td=preçot*(desconto/100)
  9. d=preçot-td
  10. print("A PAGAR:","{0:.2f}".format(d))
  11. print("DESCONTO:","{0:.2f}".format(td))
  12. if(q<5 and cor=="VERMELHA"):
  13. desconto=5
  14. td=preçot*5/100
  15. d=preçot-td
  16. print("A PAGAR:","{0:.2f}".format(d))
  17. print("DESCONTO:","{0:.2f}".format(td))
  18.  
  19. if(q<=5 and cor=="AZUL"):
  20. desconto=0
  21. print("A PAGAR:","{0:.2f}".format(preçot))
  22. print("DESCONTO:","{0:.2f}".format(desconto))
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement