а вот от меня
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=windows-1251">
</head>
<body>
<script language = "JavaScript">
document.write("<p><p>");
random();
document.write("<center><p>Угадай число за ПЯТЬ попыток<p></center>");
function clue() {
clue1 = num-clue3;
clue2 = num+clue4;
alert("Число находится между " + clue1 + " и " + clue2);
}
function random() {
g=0;
today = new Date();
clue3=today.getTime();
clue3=Math.round(Math.abs (Math.sin (clue3)*5));
clue4=today.getTime();
clue4=Math.round(Math.abs (Math.sin (clue4)*19));
num = today.getTime();
num = Math.round(Math.abs (Math.sin (num)*100));
return num;
return clue3;
return clue4;
}
function guess() {
var no=document.game.number.value;
g=g+1;
if (g == 5 ) {
alert("Это была последняя попытка!");
alert("Теперь отгадайте другое число!");
document.game.number.value = "";
random();
}
if (no > num ) {
alert("Загаданное число меньше!");
alert("Это " + g + " попытка!");
}
if (no < num ) {
alert("Загаданное число больше!");
alert("Это " + g + " попытка!");
}
if (no == num) {
alert("Победа!");
alert("Вы угадали за " + g + " попыток.");
document.game.number.value = "";
random();
}
}
//document.write("Это число "+num);
</script>
<center>
<form name = game>
<input type=text name=number size=8>
<input type=button value = " !!!Подсказка!!! " onClick="clue()">
<P>
<input type=button value=" Угадать " onClick="guess()">
<P>
<input type=button value= " Новая игра " onClick="random()">
</form>
</center>
</body>
</html>
Я все правильно сделал?