fix: make expected results more descriptive for numbers exercises
This commit is contained in:
@ -28,7 +28,11 @@ import (
|
|||||||
// https://golang.org/pkg/math/#Pow
|
// https://golang.org/pkg/math/#Pow
|
||||||
//
|
//
|
||||||
// EXPECTED OUTPUT
|
// EXPECTED OUTPUT
|
||||||
|
// go run main.go 10
|
||||||
// 1256.64
|
// 1256.64
|
||||||
|
//
|
||||||
|
// go run main.go 54.2
|
||||||
|
// 36915.47
|
||||||
// ---------------------------------------------------------
|
// ---------------------------------------------------------
|
||||||
|
|
||||||
func main() {
|
func main() {
|
||||||
|
@ -25,7 +25,11 @@ import (
|
|||||||
// Use `math.Pow` to calculate the volume
|
// Use `math.Pow` to calculate the volume
|
||||||
//
|
//
|
||||||
// EXPECTED OUTPUT
|
// EXPECTED OUTPUT
|
||||||
|
// go run main.go 10
|
||||||
// 4188.79
|
// 4188.79
|
||||||
|
//
|
||||||
|
// go run main.go .5
|
||||||
|
// 0.52
|
||||||
// ---------------------------------------------------------
|
// ---------------------------------------------------------
|
||||||
|
|
||||||
func main() {
|
func main() {
|
||||||
|
Reference in New Issue
Block a user