Question: Only number 7!! Use function and c++, Make sure it works when the following 1. Start time 1:00 am and future time 12:00 am 2.
Only number 7!!
Use function and c++,
Make sure it works when the following
1. Start time 1:00 am and future time 12:00 am
2. Start time 1:00 pm and future time 12:00 pm
3. Start time 12:00 am and future time 3:30 pm
4 start time 12:00 pm and future time 3:30 am

7. Your time machine is capable of going forward in time up to 24 hours. enter the proper The machine is configured to jump ahead in minutes. To number of minutes into your machine, you would like a program that can take a start time (in hours, minutes, and a Boolean indicating AM or PM) and a future time (in hours, minutes, and a Boolean indicating AM or PM) and calculate the difference in minutes between the start and future time. A time is specified in your program with three variables: int hours, minutes bool isAM For example, to represest 11:50 PM. you would store: hours = 11 minutes 50 SAM fal se ; This means that you need six variables to store a start and future time Write a program that allows the user to enter a start time and a future time. Include a function named computeDifference that takes the six variables as parameters that represent the start time and future time. Your function should return, as an int, the time difference in minutes. For example, given a start time of 11:59 AM and a future time of 12:01 PM, your program should compute 2 minutes as the time difference. Given a start time of 11:59 AM and a future time of 11:58 AM, your program should compute 1439 minutes as the time difference (23 hours and 59 minutes)
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
