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 copiar el signo del número especificado con la ayuda de la función Copysign() proporcionada por el paquete de matemáticas . 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 Copysign().
Sintaxis:
func Copysign(a, b float64) float64
Aquí, esta función devuelve un valor con la magnitud de a y el signo de b.
Ejemplo 1:
// Golang program to illustrate how to // copy the sign of the given number package main import ( "fmt" "math" ) // Main function func main() { // Copying the sign of the // given numbers // Using Copysign() function res_1 := math.Copysign(2, -3) res_2 := math.Copysign(-8, 1) res_3 := math.Copysign(-67, -2) // Displaying the result fmt.Printf("Result 1: %.1f", res_1) fmt.Printf("\nResult 2: %.1f", res_2) fmt.Printf("\nResult 3: %.1f", res_3) }
Producción:
Result 1: -2.0 Result 2: 8.0 Result 3: -67.0
Ejemplo 2:
// Golang program to illustrate how to // copy the sign of the given number package main import ( "fmt" "math" ) // Main function func main() { // Copying the sign of // the given numbers // Using Copysign() function nvalue_1 := math.Copysign(3, -1) nvalue_2 := math.Copysign(-4, 3) res := nvalue_1 + nvalue_2 fmt.Printf("%.1f + %.1f = %.1f", nvalue_1, nvalue_2, res) }
Producción:
-3.0 + 4.0 = 1.0
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