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. Obtiene un valor IEEE 754 «no es un número» con la ayuda de la función NaN() 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 de importación para acceder a la función NaN().
Sintaxis:
func NaN() float64
Ejemplo 1:
// Golang program to illustrate math.NaN() Function package main import ( "fmt" "math" ) // Main function func main() { // Getting Not-a-number value // Using NaN() function res := math.NaN() // Displaying the result fmt.Println("Result: ", res) }
Producción:
Result: NaN
Ejemplo 2:
// Golang program to illustrate math.NaN() Function package main import ( "fmt" "math" ) // Main function func main() { // Checking whether the given // value is not-a-number or not // Using NaN() function nvalue := math.NaN() if nvalue == math.NaN() { fmt.Println("Given value is not-a-number") } else { fmt.Println("Given value is not a not-a-number") } }
Producción:
Given value is not a not-a-number
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