Guest User

Untitled

a guest
Nov 23rd, 2017
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.84 KB | None | 0 0
  1. <!doctype html>
  2. <!-- round.html Karen Zhu-->
  3. <!-- Web page that rounds a number to one decimal place. -->
  4.  
  5. <html>
  6. <head>
  7. <title> Number Rounder </title>
  8. </head>
  9.  
  10. <body>
  11. <h2> Number Rounder </h2>
  12. <p>
  13. Enter a number: <input type="text" id="numberBox" size=12 value="">
  14. Number of digits to round to: <input type="text" id="roundBox" size=12 value="">
  15. </p>
  16. <input type="button" value="Round It"
  17. onclick="number=parseFloat(document.getElementById('numberBox').value);
  18. numberOfDigits=parseFloat(document.getElementById('roundBox').value);
  19. multiplier=10^numberOfDigits;
  20. rounded=Math.round(multiplier*number)/multiplier;
  21. document.getElementById('outputDiv').innerHTML=
  22. number + ' rounded to roundBox ' + rounded;">
  23. <hr>
  24. <div id="outputDiv"></div>
  25. </body>
  26. </html>
Add Comment
Please, Sign In to add comment