Advertisement
Guest User

Untitled

a guest
Sep 6th, 2014
189
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Scala 0.38 KB | None | 0 0
  1. package com.wausoft.core
  2.  
  3. object Program extends App {
  4.     print("Please enter a number of seconds: ")
  5.     val time = Console.readInt
  6.     val secondsInHour = 3600
  7.     val secondsInMinute = 60
  8.     val hours = time / secondsInHour
  9.     val minutes = (time % secondsInHour) / secondsInMinute
  10.     val seconds = (time % secondsInHour) % secondsInMinute
  11.     println(s"h: $hours, m: $minutes, s: $seconds")
  12. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement