Adding control blocks examples.
parent
6795612268
commit
10bc00ef89
|
@ -0,0 +1,21 @@
|
||||||
|
package main
|
||||||
|
|
||||||
|
import (
|
||||||
|
"fmt"
|
||||||
|
"math"
|
||||||
|
)
|
||||||
|
|
||||||
|
func pow(x, n, lim float64) float64 {
|
||||||
|
if v := math.Pow(x, n); v < lim {
|
||||||
|
return v
|
||||||
|
} else {
|
||||||
|
return lim
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func main() {
|
||||||
|
fmt.Println(
|
||||||
|
pow(3, 2, 10),
|
||||||
|
pow(3, 3, 20),
|
||||||
|
)
|
||||||
|
}
|
Loading…
Reference in New Issue