PHP » GoLang |
login |
register |
about
|
sqrtsqrt[code=golang]
package main
import (
"fmt"
"math"
)
func main() {
c := math.Sqrt(9)
fmt.Printf("%.1f", c)
}
[/code]
|