Compute Decimal Logarithm
Examples in
Go
package main
import (
"fmt"
"math"
)
func main() {
fmt.Printf("%.1f", math.Log10(100))
}