Added temp-conversion exercise
This commit is contained in:
parent
e56ec312f6
commit
d4647fd0ae
|
@ -0,0 +1,3 @@
|
||||||
|
module temp-conversion
|
||||||
|
|
||||||
|
go 1.21.6
|
|
@ -0,0 +1,19 @@
|
||||||
|
package main
|
||||||
|
|
||||||
|
import "fmt"
|
||||||
|
|
||||||
|
var cel float64
|
||||||
|
var fah float64
|
||||||
|
|
||||||
|
func main() {
|
||||||
|
fmt.Println("Celsius to Fahrenheit converter")
|
||||||
|
fmt.Println("Write a temperature in celsius")
|
||||||
|
fmt.Scan(&cel)
|
||||||
|
celsiusToFahrenheit(cel)
|
||||||
|
fmt.Printf("%v degrees Celsius are equivallent to %v degrees Fahrenheit\n", cel, fah)
|
||||||
|
}
|
||||||
|
|
||||||
|
func celsiusToFahrenheit(cel float64) {
|
||||||
|
fah = cel*1.8 + 32
|
||||||
|
return
|
||||||
|
}
|
Loading…
Reference in New Issue