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

Published on 12 May 2024 09:40 PM

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

Source code in the picat programming language

go =>
  N = random(1,10),
  do print("Guess a number: ")
  while (read_int() != N),
  println("Well guessed!").

go2 =>
  N = random(1, 10),
  repeat,
  print('Guess the number: '),
  N = read_int(),
  println("Well guessed!"),
  !.

  

You may also check:How to resolve the algorithm Stack traces step by step in the Oforth programming language
You may also check:How to resolve the algorithm Shoelace formula for polygonal area step by step in the Ruby programming language
You may also check:How to resolve the algorithm Loops/While step by step in the Haskell programming language
You may also check:How to resolve the algorithm Draw a sphere step by step in the 11l programming language
You may also check:How to resolve the algorithm Golden ratio/Convergence step by step in the Prolog programming language