Data commit
This commit is contained in:
parent
7387c8f97b
commit
cb5bb5e222
199093 changed files with 3378972 additions and 0 deletions
|
|
@ -0,0 +1,17 @@
|
|||
GuessANumber := proc(low, high)
|
||||
local number, input;
|
||||
randomize():
|
||||
printf( "Guess a number between %d and %d:\n:> ", low, high );
|
||||
number := rand(low..high)();
|
||||
do
|
||||
input := parse(readline());
|
||||
if input > number then
|
||||
printf("Too high, try again!\n:> ");
|
||||
elif input < number then
|
||||
printf("Too low, try again!\n:> ");
|
||||
else
|
||||
printf("Well guessed! The answer was %d.\n", number);
|
||||
break;
|
||||
end if;
|
||||
end do:
|
||||
end proc:
|
||||
|
|
@ -0,0 +1 @@
|
|||
GuessANumber(2,5);
|
||||
Loading…
Add table
Add a link
Reference in a new issue