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

Published on 12 May 2024 09:40 PM

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

Source code in the powershell programming language

Function GuessNumber($Guess)
{
    $Number = Get-Random -min 1 -max 11
    Write-Host "What number between 1 and 10 am I thinking of?"
        Do
        {
        Write-Warning "Try again!"
        $Guess = Read-Host "What's the number?"
        }
        While ($Number -ne $Guess)
    Write-Host "Well done! You successfully guessed the number $Guess."
}


$myNumber = Read-Host "What's the number?"
GuessNumber $myNumber


  

You may also check:How to resolve the algorithm Associative array/Iteration step by step in the Groovy programming language
You may also check:How to resolve the algorithm Loops/N plus one half step by step in the Arturo programming language
You may also check:How to resolve the algorithm Unicode variable names step by step in the C++ programming language
You may also check:How to resolve the algorithm Cumulative standard deviation step by step in the TI-83 BASIC programming language
You may also check:How to resolve the algorithm O'Halloran numbers step by step in the EasyLang programming language