Advertisement
Muhammad_Farroos

rumus parkir 3

Jun 16th, 2021
364
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. fun main() {
  2. var hours = 48
  3. when(hours){
  4. in 1..5 -> print("${(hours * 5).toDouble()}")
  5. in 6..23 -> print("${5 + (hours - 5) * 0.5}")
  6. else -> print("${((hours%24)*0.5) + (hours/24 * 15)}")
  7. }
  8. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement