Final answer:
Create a program that prompts the user to input three test scores and saves those values in variables. An example in the Python language is given to demonstrate this.
Step-by-step explanation:
To write a program that handles test scores, we'll need to create variables to store the scores, prompt the user for input, and then save those inputs into the variables. Below is an example of how this could be done in a common programming language like Python:
# Prompt the user for test scores
test_score1 = float(input('Enter the first test score: '))
test_score2 = float(input('Enter the second test score: '))
test_score3 = float(input('Enter the third test score: '))
# Now, the variables test_score1, test_score2, and test_score3 hold the scores
print(f'Test scores entered: {test_score1}, {test_score2}, {test_score3}')
In this program, the input() function is used to get user input, which is then converted to a float (in case scores include decimals) and stored in the variables test_score1, test_score2, and test_score3.