Answered step by step
Verified Expert Solution
Question
1 Approved Answer
Toll roads have different fees at different times of the day and on weekends. Write a function CalcToll ( ) that has three arguments: the
Toll roads have different fees at different times of the day and on weekends. Write a function CalcToll that has three arguments: the current hour of time int whether the time is morning bool and whether the day is a weekend bool The function returns the correct toll fee double based on the chart below.
Weekday Tolls
Midnight to am $
am to : am $
am to $
pm to pm $
Starting : pm $
Weekend Tolls
Midnight to am $
am to $
Starting pm $
Ex The function calls below, with the given arguments, will return the following toll fees:
CalcToll true, false returns
CalcToll false, false returns
CalcToll false, true returns
CalcToll true, true returns
IMPORTANT: For the purpose of this, consider noon as NOT morning, with an hour of Midnight IS morning, with an hour of So a weekday at noon would be called as CalcToll false, false
LAB ACTIVITY
: LAB: Toll calculations
main.cpp
Load default template...
#include
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started