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

Published on 12 May 2024 09:40 PM

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

Source code in the zkl programming language

r:=((0).random(10)+1).toString();
while(1){
   n:=ask("Num between 1 & 10: ");
   if(n==r){ println("Well guessed!"); break; } 
   println("Nope")
}

  

You may also check:How to resolve the algorithm 100 doors step by step in the AutoIt programming language
You may also check:How to resolve the algorithm Rosetta Code/Count examples step by step in the Julia programming language
You may also check:How to resolve the algorithm Sort an integer array step by step in the Lambdatalk programming language
You may also check:How to resolve the algorithm Tokenize a string with escaping step by step in the Common Lisp programming language
You may also check:How to resolve the algorithm String matching step by step in the TXR programming language