How to resolve the algorithm Guess the number step by step in the VBA programming language

Published on 12 May 2024 09:40 PM

How to resolve the algorithm Guess the number step by step in the VBA 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 VBA programming language

Source code in the vba programming language

Sub GuessTheNumber()
Dim NbComputer As Integer, NbPlayer As Integer
    Randomize Timer
    NbComputer = Int((Rnd * 10) + 1)
    Do
        NbPlayer = Application.InputBox("Choose a number between 1 and 10 : ", "Enter your guess", Type:=1)
    Loop While NbComputer <> NbPlayer
    MsgBox "Well guessed!"
End Sub

  

You may also check:How to resolve the algorithm Inheritance/Single step by step in the C programming language
You may also check:How to resolve the algorithm Logical operations step by step in the uBasic/4tH programming language
You may also check:How to resolve the algorithm Array length step by step in the JavaScript programming language
You may also check:How to resolve the algorithm Multi-base primes step by step in the C++ programming language
You may also check:How to resolve the algorithm Range extraction step by step in the D programming language