El lenguaje Go brinda soporte incorporado para constantes básicas y funciones matemáticas para realizar operaciones en los números con la ayuda del paquete matemático. Puede encontrar el infinito positivo (si el signo es >= 0) o el infinito negativo (si el signo es < 0) con la ayuda de la función Inf() proporcionada por el paquete matemático. Por lo tanto, debe agregar un paquete matemático en su programa con la ayuda de la palabra clave import para acceder a la función Inf().
Sintaxis:
func Inf(sign int) float64
Ejemplo 1:
C
// Golang program to illustrate the // math.Inf() Function package main import ( "fmt" "math" ) // Main function func main() { // Finding positive infinity // and negative infinity // Using Inf() function res_1 := math.Inf(-1) res_2 := math.Inf(1) // Displaying the result fmt.Println("Result 1: ", res_1) fmt.Println("Result 2: ", res_2) }
Producción:
Result 1: -Inf Result 2: +Inf
Ejemplo 2:
C
// Golang program to illustrate the // math.Inf() Function package main import ( "fmt" "math" ) // Main function func main() { // Finding positive infinity // and negative infinity // Using Inf() function nvalue := math.Inf(2) mvalue := math.Inf(-3) fmt.Println("Positive infinity: ", nvalue) fmt.Println("Negative infinity: ", mvalue) }
Producción:
Positive infinity: +Inf Negative infinity: -Inf
Publicación traducida automáticamente
Artículo escrito por Kirti_Mangal y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA