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 exponencial en base 10 (10**a) del número especificado con la ayuda de la función pow10() 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 Pow10().
Sintaxis:
func Pow10(a int) float64
- Si el valor de a<-323, esta función devolverá 0.
- Si el valor de a>308, entonces esta función devolverá +Inf.
Ejemplo 1:
// Golang program to illustrate how to find // base-10 exponential of the given numbers package main import ( "fmt" "math" ) // Main function func main() { // Finding the base-10 exponential // of the given numbers // Using Pow10() function res_1 := math.Pow10(3) res_2 := math.Pow10(-2) res_3 := math.Pow10(310) res_4 := math.Pow10(-300) // 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: 1000.0 Result 2: 0.0 Result 3: +Inf Result 4: 0.0
Ejemplo 2:
// Golang program to illustrate how to find // base-10 exponential of the given numbers package main import ( "fmt" "math" ) // Main function func main() { // Finding the base-10 exponential // of the given numbers // Using Pow10() function nvalue_1 := math.Pow10(2) nvalue_2 := math.Pow10(3) // Sum of the given exponentials res := nvalue_1 + nvalue_2 fmt.Printf("%.2f + %.2f = %.2f", nvalue_1, nvalue_2, res) }
Producción:
100.00 + 1000.00 = 1100.00
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