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. Verifica si el signo del número especificado es negativo o cero negativo con la ayuda de la función Signbit() proporcionada por el paquete matemático . Si el signo del número dado es negativo, entonces esta función devolverá verdadero. De lo contrario, devuelve falso. Por lo tanto, debe agregar un paquete matemático en su programa con la ayuda de la palabra clave de importación para acceder a la función Signbit().
Sintaxis:
func Signbit(x float64) bool
Ejemplo 1:
// Golang program to illustrate Signbit() Function package main import ( "fmt" "math" ) // Main function func main() { // Using Signbit() function res_1 := math.Signbit(-6) res_2 := math.Signbit(54) res_3 := math.Signbit(math.Inf(-1)) res_4 := math.Signbit(math.NaN()) res_5 := math.Signbit(math.Pi) // Displaying the result fmt.Println("Result 1: ", res_1) fmt.Println("Result 2: ", res_2) fmt.Println("Result 3: ", res_3) fmt.Println("Result 4: ", res_4) fmt.Println("Result 5: ", res_5) }
Producción:
Result 1: true Result 2: false Result 3: true Result 4: false Result 5: false
Ejemplo 2:
// Golang program to illustrate Signbit() Function package main import ( "fmt" "math" ) // Main function func main() { // Using Signbit() function nvalue := math.Signbit(-34) if nvalue == true { fmt.Println("Sign of the "+ "given number is negative") } else { fmt.Println("Sign of the given "+ "number is not negative") } }
Producción:
Sign of the given number is negative
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