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 número más pequeño entre los dos números dados con la ayuda de la función Min() 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 Min().
Sintaxis:
func Min(a, b float64) float64
- Si pasa -Inf en esta función como Min(-Inf, b) o Min(a, -Inf), entonces esta función devolverá -Inf.
- Si pasa NaN en esta función como Min(NaN, b) o Min(a, NaN), entonces esta función devolverá NaN.
- Si pasa -0 o +0 en esta función como Min(-0, -0) o Min(-0, +0) o Min(-0, -0) o Min(+0, -0), entonces esto la función devolverá -0.
Ejemplo 1:
// Golang program to illustrate how // to find the smallest number package main import ( "fmt" "math" ) // Main function func main() { // Finding smallest number // among the given numbers // Using Min() function res_1 := math.Min(0, -0) res_2 := math.Min(-100, 100) res_3 := math.Min(45.6, 8.9) res_4 := math.Min(math.NaN(), 67) // 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) }
Producción:
Result 1: 0.0 Result 2: -100.0 Result 3: 8.9 Result 4: NaN
Ejemplo 2:
// Golang program to illustrate how // to find the smallest number package main import ( "fmt" "math" ) // Main function func main() { // Finding smallest number // among the given numbers // Using Min() function nvalue_1 := math.Min(34, 67) nvalue_2 := math.Min(56.7, 90.8) // Adding minimum numbers res := nvalue_1 + nvalue_2 fmt.Printf("%.2f + %.2f = %.2f", nvalue_1, nvalue_2, res) }
Producción:
34.00 + 56.70 = 90.70
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