Assignment
Plan and code a program utilizing one or more repetition structures to solve the following problem:
After caffeine is absorbed into the body, 13% is eliminated from the body each hour. Assume a person drinks an
8-oz cup of brewed coffee containing 130 mg of caffeine, and that the caffeine is absorbed immediately into the
body. Write a program to calculate the following values:
(a) The number of hours required until 65 mg (one-half the original amount) remain in the body.
(b) The amount of caffeine in the body X hours after the person drinks the coffee.
Input
Person’s name and how many hours they want to see the output for.
Output
For (a) above, just the number of hours required until 65 mg remain in the body.
For (b) above, a listing of caffeine remaining after each hour until the user’s limit is reached.
Note
Adequately check entered data for validity. Use adequate test data to process all valid data and representative
data to show how your program handles invalid data.
Label all output clearly. Be sure your output file contains user prompts and what was entered by the user in
addition to the results of your program processing.
BE SURE TO INCLUDE ADEQUATE ERROR HANDLING IN YOUR PROGRAM AND ERROR DATA WHEN YOU RUN THE
PROGRAM TO DEMONSTRATE ERROR HANDLING.
for error handling make sure that they are unsigned value ( not negative) no division by zero also. the for loop start with initialize value; condition( not under 65); substraction
Looks fine , I mostly like you put 0.87 instead of 1 - 0.13 , but you should mention it as comment , also I did some modification , so you can try with 10 hours or -3 hours , which you did not think to verify . Also you need to verify that there is 65 mg in the body system.