add chapter 5 and refactor root path
This commit is contained in:
17
chapter4/tocelsius/tocelsius.go~
Normal file
17
chapter4/tocelsius/tocelsius.go~
Normal file
@@ -0,0 +1,17 @@
|
||||
package main
|
||||
|
||||
import (
|
||||
"fmt"
|
||||
"headfirstgo/headfirstgo/chapter4/keyboard"
|
||||
"log"
|
||||
)
|
||||
|
||||
func main() {
|
||||
fmt.Print("Enter a temperature in Farenheit: ")
|
||||
farenheit, err := keyboard.GetFloat()
|
||||
if err != nil {
|
||||
log.Fatal(err)
|
||||
}
|
||||
celsius := (farenheit - 32) * 5 / 9
|
||||
fmt.Printf("%0.2f degrees Celsius\n", celsius)
|
||||
}
|
||||
Reference in New Issue
Block a user