fix: make expected results more descriptive for numbers exercises

This commit is contained in:
Inanc Gumus
2018-11-07 23:15:31 +03:00
parent 307aa79587
commit 39b095e670
2 changed files with 10 additions and 2 deletions

View File

@ -28,7 +28,11 @@ import (
// https://golang.org/pkg/math/#Pow
//
// EXPECTED OUTPUT
// 1256.64
// go run main.go 10
// 1256.64
//
// go run main.go 54.2
// 36915.47
// ---------------------------------------------------------
func main() {

View File

@ -25,7 +25,11 @@ import (
// Use `math.Pow` to calculate the volume
//
// EXPECTED OUTPUT
// 4188.79
// go run main.go 10
// 4188.79
//
// go run main.go .5
// 0.52
// ---------------------------------------------------------
func main() {