DevBits
Home
Atlas
Play
About
Sign up
Log in
All
Go
Math
Compute Binary Logarithm
Compute Binary Logarithm in Go
Compute Binary Logarithm in Go
Posted by
yhuang
Public (Editable by Users)
Language
Go
Dependencies
import "fmt"
import "math"
fmt.Printf()
math.Log2()
Run
Go 1.15.5
Play
Copy
Copy To
Official Go Playground
Expand
Fork
Edit
main.go
package main import ( "fmt" "math" ) func main() { fmt.Printf("%.1f", math.Log2(256)) }
Stdout
Stderr