The program illustrates the use of loops and conditions.
Loops are used for repetitions, while conditions are used to make decisions
The game program in Python, where comments are used to explain each line is as follows:
#This initializes the point to 100
point = 100
#The following loop is repeated 4 times
for i in range(4):
#This gets the current action
action = input("Hit or Miss: ")
#This following if statement calculates the point
if action.lower() == "hit":
point+=10
else:
point-=20
#This prints the calculated point
print(point)
Read more about loops and conditions at:
brainly.com/question/14284157