Here is a structured pseudocode for the process of guessing a number between 1 and 100:
Generate a random number between 1 and 100 and store it as the correct number.
Prompt the player to enter a guess.
Read the player's guess.
If the guess is equal to the correct number, display a congratulatory message and end the game.
If the guess is too high, display a message indicating that the guess is too high and go back to step 2.
If the guess is too low, display a message indicating that the guess is too low and go back to step 2.
Here's an example run of the game with the correct number being 67:
1. Generated number is 67.
2. Please enter your guess between 1 and 100.
3. 50
4. Too low. Please try again.
2. Please enter your guess between 1 and 100.
3. 80
5. Too high. Please try again.
2. Please enter your guess between 1 and 100.
3. 67
4. Congratulations! You guessed the correct number.
Have fun trying to guess the number!