Advertisement
Guest User

yay

a guest
Oct 25th, 2014
138
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.67 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="UTF-8"/>
  5. </head>
  6. <script>
  7. function tak()
  8. {
  9.     var liczbaA=document.getElementById('licz1').value;
  10.     var liczbaB=document.getElementById('licz2').value;
  11.  
  12.     if(parseInt(liczbaA)<=parseInt(liczbaB))
  13.     {
  14.         for (x=parseInt(liczbaA);x<=parseInt(liczbaB);x++)
  15.         document.getElementById(target_id).innerHTML+=x+",";
  16.     }
  17.     else
  18.     {
  19.         for (x=parseInt(liczbaA);x>=parseInt(liczbaB);x--)
  20.         document.getElementById(target_id).innerHTML+=x+",";
  21.     }
  22. };
  23. </script>
  24. <body>
  25. Liczba I:<input type="value" id="licz1"/>
  26. Liczba II:<input type="value" id="licz2"/>
  27.     <input type="button" value="SPRAWDŹ" onclick="tak()"/>
  28. </body>
  29. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement