Challenge: Parking Fee Calculator
Task
Swipe to start coding
You are building a parking management system. Each vehicle type pays a different fee depending on the parking zone.
- Check the car type using
ifandelse if:- If the car is
"compact", use aswitchstatement onzoneto assign the fee:- Zone 1 β $5.0
- Zone 2 β $3.0
- Other zones β $4.0
- If the car is
"SUV", use aswitchstatement onzoneto assign the fee:- Zone 1 β $8.0
- Zone 2 β $6.0
- Other zones β $7.0
- For other car types, set the fee to $0.0.
- If the car is
- Return the fee from the function.
Example
calculateParkingFee("compact", 1) β 5.0
calculateParkingFee("SUV", 3) β 7.0
calculateParkingFee("truck", 2) β 0.0
Solution
solution.cpp
Everything was clear?
Thanks for your feedback!
SectionΒ 2. ChapterΒ 1
single
Ask AI
Ask AI
Ask anything or try one of the suggested questions to begin our chat
Awesome!
Completion rate improved to 7.69
Challenge: Parking Fee Calculator
Swipe to show menu
Task
Swipe to start coding
You are building a parking management system. Each vehicle type pays a different fee depending on the parking zone.
- Check the car type using
ifandelse if:- If the car is
"compact", use aswitchstatement onzoneto assign the fee:- Zone 1 β $5.0
- Zone 2 β $3.0
- Other zones β $4.0
- If the car is
"SUV", use aswitchstatement onzoneto assign the fee:- Zone 1 β $8.0
- Zone 2 β $6.0
- Other zones β $7.0
- For other car types, set the fee to $0.0.
- If the car is
- Return the fee from the function.
Example
calculateParkingFee("compact", 1) β 5.0
calculateParkingFee("SUV", 3) β 7.0
calculateParkingFee("truck", 2) β 0.0
Solution
solution.cpp
Everything was clear?
Thanks for your feedback!
SectionΒ 2. ChapterΒ 1
single