Advertisement
Guest User

Untitled

a guest
Jul 17th, 2017
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.59 KB | None | 0 0
  1. def main():
  2. qtd = int(input("Informe a quantidade: "))
  3. valor = 2
  4. i = 1
  5. dia = 0
  6. maior = 0
  7. while i <= 5:
  8. maior = qtd
  9. i = i + 1
  10. qtd = int(input("Informe a quantidade: "))
  11. # Só exibe a qtde. quando a qtide é menor que o maior.
  12. if maior > qtd:
  13. maior_qtd = maior
  14. dia = i - 1
  15. maior_venda = maior_qtd * valor
  16. print("A maior venda foi {} ".format(maior_qtd))
  17. print("O valor da maior venda foi {}R$ ".format(maior_venda))
  18. print("A maior venda foi no dia {}/3".format(dia))
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement