- 1

I have tried to solve this project but i passed only 3 test case from 6 test case

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 -> my response is: fun main(args: Array<String>) { var hours = readLine()!!.toInt() var total: Double = 0.0 if(hours < 24){ if(hours > 5){ total = 5.0 total += (hours - 5)*0.5 }else { total = hours*1.0} }else{ total = 15.0 total += (hours - 24)*0.5} print...

23rd May 2021, 1:10 PM
Chaima HADDAD
Chaima HADDAD - avatar
3 odpowiedzi
0
Hours maybe more than 48 hours. So just do this. total = 15 * (hours / 24) + 0.5 * (hours % 24) if(hours < 24) { if(hours > 5) { total = (hours - 5) * 0.5 + 5 } else { total = hours * 1.0 } } else { total = 15 * (hours / 24) + (hours % 24) * 0.5 }
23rd May 2021, 3:20 PM
A͢J
A͢J - avatar
0
Pay attention to: — "for each 24 hours, there is a flat fee of $15."
23rd May 2021, 3:29 PM
Solo
Solo - avatar
0
Yes, that's right i opened all the test case thank you very much for all 🙂
23rd May 2021, 4:01 PM
Chaima HADDAD
Chaima HADDAD - avatar