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 resto o el resto de punto flotante IEEE 754 de a/b con la ayuda de la función Remainder() 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 Remainder().
Sintaxis:
func Remainder(a, b float64) float64
- Si pasa -Inf o +Inf en esta función como Remainder(-Inf, b) o Remainder(+Inf, b), entonces esta función devolverá NaN.
- Si pasa NaN en esta función como Resto (NaN, b), entonces esta función devolverá NaN.
- Si pasa b=0 en esta función como Remainder(a, 0), entonces esta función devolverá NaN.
- Si pasa -Inf o +Inf en esta función como Remainder(a, -Inf) o Remainder(b, +Inf), entonces esta función devolverá a.
- Si pasa NaN en esta función como Remainder(a, NaN), entonces esta función devolverá NaN.
Ejemplo 1:
// Golang program to illustrate // math.Remainder() Function package main import ( "fmt" "math" ) // Main function func main() { // Finding remainder // Using Reminder() function res_1 := math.Remainder(36, 5) res_2 := math.Remainder(-100, 100) res_3 := math.Remainder(45.6, 8.9) res_4 := math.Remainder(math.NaN(), 67) res_5 := math.Remainder(math.Inf(1), 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) fmt.Printf("\nResult 5: %.1f", res_5) }
Producción:
Result 1: 1.0 Result 2: -0.0 Result 3: 1.1 Result 4: NaN Result 5: NaN
Ejemplo 2:
// Golang program to illustrate // math.Remainder() Function package main import ( "fmt" "math" ) // Main function func main() { // Finding remainder // Using Remainder() function nvalue_1 := math.Remainder(49, 6) nvalue_2 := math.Remainder(56.7, 3) // Finding sum of the // given remainders res := nvalue_1 + nvalue_2 fmt.Printf("%.2f + %.2f = %.2f", nvalue_1, nvalue_2, res) }
Producción:
1.00 + -0.30 = 0.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