How to resolve the algorithm Guess the number step by step in the M2000 Interpreter programming language
Published on 12 May 2024 09:40 PM
How to resolve the algorithm Guess the number step by step in the M2000 Interpreter programming language
Table of Contents
Problem Statement
Write a program where the program chooses a number between 1 and 10. A player is then prompted to enter a guess. If the player guesses wrong, then the prompt appears again until the guess is correct. When the player has made a successful guess the computer will issue a "Well guessed!" message, and the program exits. A conditional loop may be used to repeat the guessing until the user is correct.
Let's start with the solution:
Step by Step solution about How to resolve the algorithm Guess the number step by step in the M2000 Interpreter programming language
Source code in the m2000 programming language
Module QBASIC_Based {
supervisor:
GOSUB initialize
GOSUB guessing
GOTO continue
initialize:
\\ Not need to RANDOMIZE TIMER
\\ we can use Random(1, 100) to get a number from 1 to 100
n = 0: r = INT(RND * 100 + 1): g = 0: c$ = ""
RETURN
guessing:
WHILE g <> r {
INPUT "Pick a number between 1 and 100:"; g
IF g = r THEN {
PRINT "You got it!"
n ++
PRINT "It took "; n; " tries to pick the right number."
} ELSE.IF g < r THEN {
PRINT "Try a larger number."
n ++
} ELSE {
PRINT "Try a smaller number."
n++
}
}
RETURN
continue:
WHILE c$ <> "YES" AND c$ <> "NO" {
INPUT "Do you want to continue? (YES/NO)"; c$
c$ = UCASE$(c$)
IF c$ = "YES" THEN {
GOTO supervisor
} ELSE.IF c$ = "NO" THEN {
Goto End
}
}
End:
}
QBASIC_Based
You may also check:How to resolve the algorithm Linear congruential generator step by step in the Clojure programming language
You may also check:How to resolve the algorithm Sequence: smallest number with exactly n divisors step by step in the Nim programming language
You may also check:How to resolve the algorithm Kronecker product based fractals step by step in the Ada programming language
You may also check:How to resolve the algorithm Range expansion step by step in the Common Lisp programming language
You may also check:How to resolve the algorithm Queue/Definition step by step in the Standard ML programming language