Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <!DOCTYPE html>
- <html lang="pl">
- <head>
- <meta charset="utf-8"/>
- </head>
- <script type="text/javascript">
- var napis = "";
- function dopiszDoZmiennej(pierwsza, druga) {
- for (i = pierwsza; i <= druga; i++) {
- napis = napis + i + " ";
- }
- }
- function wypisz() {
- var liczba1 = document.getElementById("pole1").value;
- var liczba2 = document.getElementById("pole2").value;
- if (isNaN(liczba1) || isNaN(liczba2))
- napis = "Wprowadzone dane nie sa liczbami. Popraw proszę i spróbuj ponownie.";
- else if (liczba1 < liczba2)
- dopiszDoZmiennej(liczba1, liczba2);
- else if (liczba1 > liczba2)
- dopiszDoZmiennej(liczba2, liczba1);
- else if (liczba1 === liczba2)
- napis = liczba1;
- document.getElementById("wynik").innerHTML = napis;
- napis = "";
- }
- </script>
- <body>
- <input type="text" id="pole1"/>
- <input type="text" id="pole2"/>
- <input type="submit" value="Pokaż" onclick="wypisz()"/>
- <div id="wynik"></div><br/>
- </body>
- </html>
Advertisement
Add Comment
Please, Sign In to add comment