How to resolve the algorithm Guess the number step by step in the FreeBASIC programming language
Published on 12 May 2024 09:40 PM
How to resolve the algorithm Guess the number step by step in the FreeBASIC 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 FreeBASIC programming language
Source code in the freebasic programming language
' FB 1.05.0 Win64
Randomize
Dim n As Integer = Int(Rnd * 10) + 1
Dim guess As Integer
Print "Guess which number I've chosen in the range 1 to 10"
Print
Do
Input " Your guess : "; guess
If n = guess Then
Print "Well guessed!"
End
End If
Loop
You may also check:How to resolve the algorithm Sorting algorithms/Pancake sort step by step in the Ada programming language
You may also check:How to resolve the algorithm Roman numerals/Decode step by step in the UNIX Shell programming language
You may also check:How to resolve the algorithm Sierpinski arrowhead curve step by step in the Mathematica / Wolfram Language programming language
You may also check:How to resolve the algorithm Rot-13 step by step in the Microsoft Small Basic programming language
You may also check:How to resolve the algorithm Abundant, deficient and perfect number classifications step by step in the Processing programming language