Facebook
From Mungo Earthworm, 4 Years ago, written in Plain Text.
Embed
Download Paste or View Raw
Hits: 202
  1. <script>
  2.     var a=prompt("Podaj poczatek przedzialu: ");
  3.     var b=prompt("Podaj koniec przedzialu: ");
  4.     for(a;a<=b;a++)
  5.     {
  6.        
  7.         document.write(a+" ");
  8.        
  9.     }
  10.        
  11.     </script>