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

Published on 12 May 2024 09:40 PM

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

Source code in the action! programming language

PROC Main()
  BYTE x,n,min=[1],max=[10]

  PrintF("Try to guess a number %B-%B: ",min,max)
  x=Rand(max-min+1)+min
  DO
    n=InputB()
    IF n=x THEN
      PrintE("Well guessed!")
      EXIT
    ELSE
      Print("Incorrect. Try again: ")
    FI
  OD
RETURN

  

You may also check:How to resolve the algorithm Permutations/Rank of a permutation step by step in the Racket programming language
You may also check:How to resolve the algorithm Count in octal step by step in the PureBasic programming language
You may also check:How to resolve the algorithm Death Star step by step in the Lua programming language
You may also check:How to resolve the algorithm Apply a callback to an array step by step in the Brat programming language
You may also check:How to resolve the algorithm Fractran step by step in the VBA programming language