Please help | ParkingFee calculator | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 2

Please help | ParkingFee calculator

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 Explanation: The first 5 hours are billed at $1/hour, which results in $5. After that, the next 3 hours are billed at $0.5/hour = $1.5. So, the total would be $5+$1.5 = $6.5 The output should be a Double, even if the amount is a round number. My code: fun main(args: Array<String>) { var hours = readLine()!!.toInt() var total: Double = 0.0 if(hours <= 5){ total = hours.toDouble() * 1 } else if(hours > 5 && hours < 24){ total = (hours.toDouble() - 5) * 0.5 + 5 } else total = 15 + ((hours.toDouble() - 24) * 0.5) println(total) } The calculations are working correclty so I dont understand why it wont let me pass. Please help!

7th Aug 2022, 1:23 PM
Aron Schiphof
Aron Schiphof - avatar
1 Answer
+ 3
Aron Schiphof Hours maybe more than 48 so total = 15 * (48 / hours) + (48 % hours) * 0.5
7th Aug 2022, 1:28 PM
A͢J
A͢J - avatar