Go language program to convert hours to milliseconds
Following program shows you how to convert hours to milliseconds.
In this program we get hours from user, once we get those we need to multiply with 60 so that we get in mintues, once we get mintues we need to multiply with 60 so that we get in seconds, once we get seconds we need to multiply with 1000 so that we get in milliseconds
package main
import "fmt"
func main() {
var hours int
var milliseconds int
fmt.Println("Please enter hours:")
fmt.Scanf("%d", &hours)
milliseconds = hours * 60 * 60 *1000
fmt.Println(milliseconds , " Milliseconds")
}
Output:
Please enter hours:
2
7200000 Milliseconds