Data commit
This commit is contained in:
parent
7387c8f97b
commit
cb5bb5e222
199093 changed files with 3378972 additions and 0 deletions
|
|
@ -0,0 +1,10 @@
|
|||
guessnumber[min_, max_] :=
|
||||
Module[{number = RandomInteger[{min, max}], guess},
|
||||
While[guess =!= number,
|
||||
guess = Input[
|
||||
If[guess > number, "Too high.Guess again.",
|
||||
"Too low.Guess again.",
|
||||
"Guess a number between " <> ToString@min <> " and " <>
|
||||
ToString@max <> "."]]];
|
||||
CreateDialog[{"Well guessed!", DefaultButton[]}]];
|
||||
guessnumber[1, 10]
|
||||
Loading…
Add table
Add a link
Reference in a new issue