Go language program to convert hours to seconds


Following program shows you how to convert hours to seconds.
In this program we get hours from user, once we get those we need to multiply with 60 so that we get in minutes, and once we get minutes we need to multiply with 60 so that we get in seconds

package main

import "fmt"

func main() {

  var hours int
  var seconds int
  fmt.Println("Please enter hours:")
  fmt.Scanf("%d", &hours)
  seconds = hours * 60 * 60
  fmt.Println(seconds , " Seconds")
}

Output:

Please enter hours:
 4
14400  Seconds