Advertisement
dimipan80

Decimal to Hexadecimal

Nov 6th, 2014
280
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 0.27 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head lang="en">
  4.     <meta charset="UTF-8">
  5.     <title>Decimal-to-Hexadecimal</title>
  6. </head>
  7. <body>
  8. <script>
  9.     var num = parseInt(prompt("Enter a positive integer number"));
  10.     alert(num.toString(16).toUpperCase());
  11. </script>
  12. </body>
  13. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement