12 lines
125 B
Go
12 lines
125 B
Go
package main
|
|
|
|
import (
|
|
"fmt"
|
|
"math"
|
|
)
|
|
|
|
func main() {
|
|
a := 81.0
|
|
fmt.Printf("the total a^2 will be: %f\n", math.Sqrt(a))
|
|
}
|