Go language program to convert rupees to dollars


Following program shows you how to convert rupees to dollars
In this program we get rupees from user, once we get those we need to divide with 64 so that we get in dollars

package main

import "fmt"

func main() {

  var rupees float64
  var dollars float64
  fmt.Println("Please enter rupees:")
  fmt.Scanf("%f", &rupees)
  dollars = rupees / 64
  fmt.Println(dollars , " Dollars")
}

Output:

Please enter rupees:
 5000
78.125  Dollars