Respuesta :
Answer:
This is a zybook activity. I am providing code in Python.
num_guesses = 3
user_guesses = []
guess = 0
while guess < num_guesses:
integers = int(input())
user_guesses.append(integers)
guess = guess + 1
print(user_guesses)
Explanation:
The num_guesses holds the number of guesses which is 3.
user_guesses is a list that is to be populated with the three integers of guesses.
guess holds the numbers entered by the user.
The while loop keeps on executing until the number of guesses entered by the user exceeds the value given in the num_guesses i.e. 3.
The integer numbers entered by the user is read by the int(input()) function which accepts and reads the input from user and int means that the input value should be of type int (integer).
user_guesses.append(integers) statement means that the integers entered by the user are added to the user_guesses list. append() method is used to add each single integer in the list.
Then the value of guess is incremented by 1 and each number entered by the user is entered into the user_guesses list one by one.
After the numbers entered by the user exceeds the limit given in num_guesses which is 3, the loop breaks and the print(user_guesses)
statement is executed which prints the list user_guesses which now contains 3 integer numbers entered by the user.
Output:
3
2
5
[3, 2, 5]
The program along with output is attached as screenshot.

The user_guesses list will be populated using loops or iterations.
Iterations are used to execute repetitive operations.
The program in Python, where comments are used to explain each line is as follows
#This gets input for the number of guesses
guesses = int(input())
#This initializes the list for user guesses
user_guesses = []
#The following iteration gets all guesses
for i in range(guesses):
user_guesses.append(int(input()))
#This prints the list
print(user_guesses)
The program is implemented using a for loop
Read more about similar programs at:
https://brainly.com/question/20348835