Advertisement
476179

7.1Act6

Nov 14th, 2018
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 0.53 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4.     <meta charset="utf-8">
  5.     <title>ex1.loops</title>
  6. </head>
  7.    
  8. <body>
  9. <script>
  10.  
  11.     var num1 = parseFloat(prompt("enter a number between 1 and 10 (1 and 10 included)"));
  12.    
  13.     while(num1 > 10 || num1 < 1)
  14.    {
  15.     alert("The value entered is not valid. Please try again."+ num1);
  16.      num1 = parseFloat(prompt("enter a number between 1 and 10 (1 and 10 included)"));
  17.    }
  18.    document.write("Thank you. The number you entered is "+num1+".");
  19. </script>
  20. </body>
  21.  
  22. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement