Convert Temperature from Fahrenheit to centigrade

The formula to convert temperature from Fahrenheit to Centigrade is as below...

C = ( F - 32 ) * 5 / 9
where C and F are temperature in Centigrade and Fahrenheit in respectively.
package main
import "fmt"
func main() {
var f float32
fmt.Print("Enter the temperature in fahrenheit: ")
fmt.Scan(&f)
c := ( f - 32 ) * 5 / 9
fmt.Printf("Temprature in centigrade: %.2f",c)
}

Comments

Popular posts from this blog

Inline V/S Block Level Element

Variable Naming & Scope of Variable

Variables in Go lang

String in golang

Constant in Go lang

Identifiers

Identify Variable type and values in go lang

Decision Making in Go lang

Installing go lang

Sum of two numbers in go lang