I'm new to C++ and I need help in writing code:
Lucy likes to jog in the morning.
As she jogs, she counts the number of strides, she makes during the first minute and then again during the last minute of her jogging.
She then averages these two numbers together and calls this the average the number of strides she makes during a minute.
Write a program that asks for the number of strides made during the first minute and the number of strides made during the last minute (each an integer) and then asks for the total number of hours and minutes that Lucy jogs. (each an integer)
Assume Lucy’s stride length is 2.5 feet. Using the fact that there are 5280 feet in a mile, have your program display the average number of strides Lucy makes in a minute (a float) and the distance Lucy jogged in miles (a float)
Below is a sample run….your code should work for any input I choose .
What was the number of strides you made during the first minute?
128
What was the number of strides you made during the last minute?
123
How many hours did you jog?
1
How many minutes did you jog?
15
Your average number of strides per minute is: 125.5
The distance you jogged was: 4.46 miles
HINT:
The magic code to print a float to 2 places is (we will learn more about this later in the course)
cout.setf(ios::fixed);
cout.setf(ios::showpoint);
cout.precision(2);