Question: https://maryash.github.io/135/labs/lab_03.html (Only need answer to task D on this webpage. Answer to be graded in gradescope) Task D. Reverse chronological order Write a program reverse-order.cpp
https://maryash.github.io/135/labs/lab_03.html (Only need answer to task D on this webpage. Answer to be graded in gradescope)
Task D. Reverse chronological order

Write a program reverse-order.cpp which asks the user to input two dates (earlier date then later date). The program should report the West basin elevation for all days in the interval in the reverse chronological order (from the later date to the earlier).
Example:
$ ./reverse-order Enter earlier date: 05/29/2018 Enter later date: 06/02/2018 06/02/2018 590.22 ft 06/01/2018 590.23 ft 05/31/2018 590.24 ft 05/30/2018 590.26 ft 05/29/2018 590.32 ft
Hint: If for the previous tasks you did not use arrays, here you really have to read the data into arrays first, and only then report them in the required order.
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
