This article introduces the simple implementation code for js guess digital games. It's a fun game. You can check whether your IQ is amazing.
The Code is as follows:
Simple Computer
Script
// Obtain a random number
Function GetRandomNum (Min, Max)
{
Var Range = Max-Min;
Var Rand = Math. random ();
Return (Min + Math. round (Rand * Range ));
}
// Obtain the text box content
Function checknum (){
Var num = getrandomnumnum (1,100 );
Alert ("dnhgn ");
Var I;
For (I = 1; I <= 10; I ++ ){
Var nums = prompt ("guess the number between 1 and 100. You only have ten chances. Come on, come on ,,,,,","");
If (I = 1 ){
If (nums = num ){
Alert ("Congratulations, you are too smart ");
Break;
} Else {
If (nums Document. write ("You have already entered" + I + ", and the number is a little small
");
} Else {
Document. write ("You have already entered" + I + ", and the number is a little big
");
}
}
}
If (I> 1 & I <= 10 ){
If (nums = num ){
Alert ("Congratulations ");
Break;
} Else {
If (nums Document. write ("You have already entered" + I + ", and the number is a little small
");
} Else {
Document. write ("You have already entered" + I + ", and the number is a little big
");
}
}
}
If (I = 10 ){
If (nums! = Num ){
Document. write ("You have no chance. Sorry! ");
Return false;
}
}
}
}
Script