Advertisement
Guest User

Untitled

a guest
Dec 6th, 2019
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.46 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="utf-8" />
  5. <title>Exercicio 13</title>
  6. <script type = "text/javascript">
  7. var carrosVendidos =parseFloat(prompt("Carros vendidos"))
  8. var valorTotalMensal = parseFloat(prompt("valor total das vendas mensais feitas por esse vendedor."))
  9. var mensalidade = 800 + carrosVendidos * 100 + valorTotalMensal *0.01
  10. alert("Mensalidade = " + mensalidade)
  11.  
  12. </script>
  13. </head>
  14. <body>
  15.  
  16. </body>
  17. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement