add: exercise solution to numbers cels to fahr

This commit is contained in:
Inanc Gumus
2018-11-18 11:44:50 +03:00
parent 08b1764ef7
commit 3b19acfebd
2 changed files with 19 additions and 0 deletions

View File

@ -38,5 +38,6 @@ func main() {
fmt.Println(10 / 2 * 10 % 7)
// This expression should print 40
// Note that you may need to use floats to solve this
fmt.Println(100 / 5 / 2)
}