auto px
package main

import (
  "fmt"
  "math"
)

func main() {
  x := 4.0
  y := math.Sqrt(x)
  fmt.Printf("Square root of %.2f is %.2f\n", x, y)
}
auto px
logoRohit Tiwari
© Rohit Tiwari for fun 😉 | Give Feedback