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

Published on 12 May 2024 09:40 PM

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

Source code in the ring programming language

### Bert Mariani
### 2018-03-01
### Guess_My_Number

myNumber = random(10)
answer   = 0

See "Guess my number between 1 and 10"+ nl

while answer != myNumber
  See "Your guess: "
  Give answer

  if answer = myNumber
    See "Well done! You guessed it! "+ myNumber +nl
  else
    See "Try again"+ nl
  ok

  if answer = 0
    See "Give up. My number is: "+ myNumber +nl
  ok
end

  

You may also check:How to resolve the algorithm Abundant, deficient and perfect number classifications step by step in the Oforth programming language
You may also check:How to resolve the algorithm Fibonacci sequence step by step in the PL/M programming language
You may also check:How to resolve the algorithm Doubly-linked list/Element insertion step by step in the Nim programming language
You may also check:How to resolve the algorithm Long multiplication step by step in the Smalltalk programming language
You may also check:How to resolve the algorithm Generate lower case ASCII alphabet step by step in the VBScript programming language