Problem Solving | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 1

Problem Solving

Parking Fee You are making a car parking software that needs to calculate and output the amount due based on the number of hours the car was parked. The fee is calculated based on the following price structure: - the first 5 hours are billed at $1 per hour. - after that, each hour is billed at $0.5 per hour. - for each 24 hours, there is a flat fee of $15. This means, that, for example, if a car parked for 26 hours, the bill should be 15+(2*0.5) = 16.0, because it was parked for 24 hours plus 2 additional hours. Sample Input: 8 Sample Output: 6.5

2nd Jan 2022, 12:17 PM
Habeeb Abdulwaheed
Habeeb Abdulwaheed - avatar
3 Answers
+ 5
Habeeb Abdulwaheed , can you please post your attempt here so that we can give you helpful hints? thanks!
2nd Jan 2022, 12:22 PM
Lothar
Lothar - avatar
+ 1
Ok it will be posted for others to see
3rd Jan 2022, 1:04 AM
Habeeb Abdulwaheed
Habeeb Abdulwaheed - avatar