<head>
</head>
<body onload="myfunc()">
<div id="mydiv">
</div>
<br>
<input type="text" id="mytext" value="1">
<br>
<input type="button" value="проверить" onclick="myfunc()">
<script>
let n = Math.floor(Math.random() * 50)+1;
let rn = Math.floor(Math.random() * 2);
let oldN = n;
let oldRN = rn;
function myfunc(){
let text = "";
oldN = n;
oldRN = rn;
n = Math.floor(Math.random() * 50)+1;
rn = Math.floor(Math.random() * 2);
if (rn == 0)
{
text += "какое число предшествует "+String(n);
n = n - 1;
}
if (rn == 1)
{
text += "какое число следует за "+String(n);
n = n + 1;
}
document.getElementById("mydiv").innerHTML = text;
let usernumber = document.getElementById("mytext").value;
if (Number(usernumber)==oldN && oldRN == 0){
alert("Правильно! Числу "+(oldN+1)+ " предшествует число "+usernumber);
}
if (Number(usernumber)==oldN && oldRN == 1){
alert("Правильно! Число "+usernumber+ " следует за числом "+(oldN-1));
}
}
</script>
</body>
|