Why does test caes 3 isn't working properly??
fun shippingCost(amount: Double, international: Boolean) { if(international == true) { println(amount*15/100) } else if(international == false && amount>=75) { println(0.0) } else if(amount < 75) { println(amount*10/100) } } fun main(args: Array<String>) { val total = readLine()!!.toDouble() val international = readLine()!!.toBoolean() shippingCost(total, international) } You are working on a eCommerce website and need to make a shipping cost calculator based on the order amount. The store uses the following cost structure: For orders in the US: - $75+ orders have free shipping - orders less than $75 have a shipping fee of 10% of the total order amount. For international orders, there is a 15% shipping fee, with a maximum of $50. This means that the maximum shipping fee for an international order is $50.