Answer:
The program in Python is as follows:
numbers = []
total = 0
for i in range(5):
    num = float(input(": "))
    numbers.append(num)
    total+=num
    
print("Lowest: ",min(numbers))
print("Highest: ",max(numbers))
print("Total: ",total)
print("Average: ",total/5)
Explanation:
The program uses list to answer the question
This initializes an empty list
numbers = []
This initializes total to 0
total = 0
The following loop is repeated 5 times
for i in range(5):
This gets each input
    num = float(input(": "))
This appends each input to the list
    numbers.append(num)
This adds up each input
    total+=num
    
This prints the lowest using min() function
print("Lowest: ",min(numbers))
This prints the highest using max() function
print("Highest: ",max(numbers))
This prints the total
print("Total: ",total)
This calculates and prints the average
print("Average: ",total/5)