Untitled
Guest 74 10th Dec, 2024
<!DOCTYPE html>
<html lang="pl-PL">
<head>
<meta charset="UTF-8"/>
<title>Wyświetlanie liczb</title>
</head>
<body>
<h1>Wyświetlanie liczb od a do b</h1>
<script type="text/javascript">
var a = parseInt(prompt("Podaj wartość a:"));
var b = parseInt(prompt("Podaj wartość b:"));
if (a <= b) {
var wynik = "";
for (var i = a; i <= b; i++) {
wynik += i + " ";
}
document.write(wynik);
} else {
document.write("Wartość a powinna być mniejsza lub równa wartości b.");
}
</script>
</body>
</html>
To share this paste please copy this url and send to your friends
RAW Paste Data