How to resolve the algorithm Guess the number step by step in the Aime programming language
Published on 12 May 2024 09:40 PM
How to resolve the algorithm Guess the number step by step in the Aime 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 Aime programming language
Source code in the aime programming language
file f;
integer n;
text s;
f.stdin;
n = irand(1, 10);
o_text("I'm thinking of a number between 1 and 10.\n");
o_text("Try to guess it!\n");
while (1) {
f_look(f, "0123456789");
f_near(f, "0123456789", s);
if (atoi(s) != n) {
o_text("That's not my number.\n");
o_text("Try another guess!\n");
} else {
break;
}
}
o_text("You have won!\n");
You may also check:How to resolve the algorithm Subtractive generator step by step in the PARI/GP programming language
You may also check:How to resolve the algorithm Vector products step by step in the Forth programming language
You may also check:How to resolve the algorithm Hello world/Graphical step by step in the Visual Basic programming language
You may also check:How to resolve the algorithm Count in octal step by step in the FutureBasic programming language
You may also check:How to resolve the algorithm Sailors, coconuts and a monkey problem step by step in the Bc programming language