Respuesta :
Answer:
caffeine_mg = float(input())
six_hours = caffeine_mg / 2
twelve_hours = six_hours / 2
twenty_four_hours = twelve_hours / 4
print('After 6 hours: {:.2f} mg'.format(six_hours))
print('After 12 hours: {:.2f} mg'.format(twelve_hours))
print('After 24 hours: {:.2f} mg'.format(twenty_four_hours))
The program is a sequential program, and does not require loops or conditional statements.
The program in Python, where comments are used to explain each line is as follows:
#This gets input for the Caffeine Amount
caffeineMg = float(input("Caffeine Amount: "))
#This prints the amount after 6 hours
print("After 6 hours: {:.2f}mg". format(caffeineMg/2.0))
#This prints the amount after 12 hours
print("After 12 hours: {:.2f}mg". format(caffeineMg/4.0))
#This prints the amount after 24 hours
print("After 24 hours: {:.2f}mg". format(caffeineMg/8.0))
Read more about sequential program at:
https://brainly.com/question/17970226