📜  Golang中求指定数的绝对值

📅  最后修改于: 2021-10-24 13:23:38             🧑  作者: Mango

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

  • 如果你在这个函数传递了infinite(Inf),那么这个函数将返回+Inf
  • 如果在此函数传递 NaN(not-a-number),则此函数将返回 NaN。

句法:

func Abs(y float64) float64

让我们在给定示例的帮助下讨论这个概念:

示例 1:

// Golang program to illustrate
// how to find absolute value
package main
  
import (
    "fmt"
    "math"
)
  
// Main function
func main() {
  
    // Finding absolute value
    // Using Abs() function
    res_1 := math.Abs(4)
    res_2 := math.Abs(-8)
    res_3 := math.Abs(math.Inf(-3))
  
    // Displaying the result
    fmt.Printf("Result 1: %.1f", res_1)
    fmt.Printf("\nResult 2: %.1f", res_2)
    fmt.Printf("\nResult 3: %.1f", res_3)
}

输出:

Result 1: 4.0
Result 2: 8.0
Result 3: +Inf

示例 2:

// Golang program to illustrate
// how to find absolute value
package main
  
import (
    "fmt"
    "math"
)
  
// Main function
func main() {
    // Finding absolute value
    nvalue_1 := math.Abs(20)
    nvalue_2 := math.Abs(34)
  
    // Sum of the given values
    res := nvalue_1 + nvalue_2
  
    // Displaying results
    fmt.Printf("%.1f + %.1f = %.1f",
            nvalue_1, nvalue_2, res)
  
}

输出:

20.0 + 34.0 = 54.0