Advertisement
Guest User

Untitled

a guest
Aug 23rd, 2019
106
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.60 KB | None | 0 0
  1. <!doctype html>
  2. <html>
  3. <head>
  4. <meta charset="utf-8">
  5. <title></title>
  6. </head>
  7. <body>
  8. <script>
  9. const psatz1 = 0.03
  10. const psatz2 = 0.06
  11. const pGrenze = 10000
  12.  
  13. var fall, provision, gesamt = 0
  14. fall = window.prompt('Bitte geben Sie den Wert eines Geschäftfalls ein, für Endausgabe 0 eingeben!')
  15. while (fall > 0) {
  16. if (fall < pGrenze) {
  17. provision = fall * psatz1
  18. } else {
  19. provision = fall * psatz2
  20. }
  21. document.write('Sie erhalten einen Geschäftsfallprovision von ' + provision + ' €<br>')
  22. gesamt += provision // gesamt = gesamt + provision
  23. fall = window.prompt('Bitte geben Sie den Wert eines Geschäftfalls ein, für Endausgabe 0 eingeben!')
  24. }
  25.  
  26. document.write('Sie erhalte insgesamt ' + gesamt + ' € Provision<br>')
  27.  
  28. /*
  29. const psatz1 = 0.03
  30. const psatz2 = 0.06
  31. const pGrenze = 10000
  32.  
  33. var fall, provision, gesamt = 0
  34. do {
  35. fall = window.prompt('Bitte geben Sie den Wert eines Geschäftfalls ein')
  36. if (fall < pGrenze) {
  37. provision = fall * psatz1
  38. } else {
  39. provision = fall * psatz2
  40. }
  41. document.write('Sie erhalten einen Geschäftsfallprovision von ' + provision + ' €<br>')
  42. gesamt += provision // gesamt = gesamt + provision
  43. } while (window.confirm("Es wird ein weiterer Geschäftsfall erfasst."))
  44. document.write('Sie erhalte insgesamt ' + gesamt + ' € Provision<br>')
  45.  
  46. */
  47. </script>
  48. </body>
  49. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement