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

Published on 12 May 2024 09:40 PM

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

Source code in the elena programming language

import extensions;
 
public program()
{
    int randomNumber := randomGenerator.nextInt(1,10);
    console.printLine("I'm thinking of a number between 1 and 10.  Can you guess it?");
    bool numberCorrect := false;
    until(numberCorrect)
    {
        console.print("Guess: ");
        int userGuess := console.readLine().toInt();
        if (randomNumber == userGuess)
        {
            numberCorrect := true;
            console.printLine("Congrats!!  You guessed right!")
        }
        else
        {
            console.printLine("That's not it.  Guess again.")
        }
    }
}

  

You may also check:How to resolve the algorithm Multi-dimensional array step by step in the ALGOL 68 programming language
You may also check:How to resolve the algorithm Quine step by step in the EasyLang programming language
You may also check:How to resolve the algorithm Hostname step by step in the Wren programming language
You may also check:How to resolve the algorithm Function definition step by step in the Fish programming language
You may also check:How to resolve the algorithm Bitwise operations step by step in the PowerShell programming language