📜  在 Golang 中查找给定数字的以 10 为底的指数

📅  最后修改于: 2021-10-25 02:40:14             🧑  作者: Mango

Go 语言为基本常量和数学函数提供内置支持,以在 math 包的帮助下对数字执行运算。借助math 包提供的pow10()函数,您可以找到指定数字的以 10 为底的指数(10**a)。因此,您需要在 import 关键字的帮助下在程序中添加一个数学包来访问 Pow10()函数。

句法:

func Pow10(a int) float64
  • 如果 a<-323 的值,则此函数将返回 0。
  • 如果a的值>308,则该函数将返回+Inf。

示例 1:

// Golang program to illustrate how to find
// base-10 exponential of the given numbers
  
package main
  
import (
    "fmt"
    "math"
)
  
// Main function
func main() {
  
    // Finding the base-10 exponential
    // of the given numbers
    // Using Pow10() function
    res_1 := math.Pow10(3)
    res_2 := math.Pow10(-2)
    res_3 := math.Pow10(310)
    res_4 := math.Pow10(-300)
  
    // Displaying the result
    fmt.Printf("Result 1: %.1f", res_1)
    fmt.Printf("\nResult 2: %.1f", res_2)
    fmt.Printf("\nResult 3: %.1f", res_3)
    fmt.Printf("\nResult 4: %.1f", res_4)
  
}

输出:

Result 1: 1000.0
Result 2: 0.0
Result 3: +Inf
Result 4: 0.0

示例 2:

// Golang program to illustrate how to find
// base-10 exponential of the given numbers
  
package main
  
import (
    "fmt"
    "math"
)
  
// Main function
func main() {
  
    // Finding the base-10 exponential
    // of the given numbers
    // Using Pow10() function
    nvalue_1 := math.Pow10(2)
    nvalue_2 := math.Pow10(3)
  
    // Sum of the given exponentials
    res := nvalue_1 + nvalue_2
    fmt.Printf("%.2f + %.2f = %.2f", 
            nvalue_1, nvalue_2, res)
  
}

输出:

100.00 + 1000.00 = 1100.00