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 menor valor entero mayor o igual que el número especificado con la ayuda de la función Ceil() 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 Ceil().
Sintaxis:
func Ceil(y float64) float64
- Si pasa +Inf o -Inf en esta función, esta función devolverá +Inf o -Inf.
- Si pasa -0 o +0 en esta función, esta función devolverá -0 o +0.
- Si pasa NaN en esta función, esta función devolverá NaN.
Ejemplo 1:
// Golang program to illustrate how to find // the least integer value greater than or // equal to the specified number package main import ( "fmt" "math" ) // Main function func main() { // Finding the least integer value // greater than or equal to the // given number // Using Ceil() function res_1 := math.Ceil(math.Pi / 2) res_2 := math.Ceil(34.567) res_3 := math.Ceil(-12.34) // 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: 35.0 Result 3: -12.0
Ejemplo 2:
// Golang program to illustrate how to find // the least integer value greater than or // equal to the specified number package main import ( "fmt" "math" ) // Main function func main() { // Finding the least integer value // greater than or equal to the // given number nvalue_1 := math.Sin(math.Pi / 4) nvalue_2 := math.Sin(math.Pi / 6) res := nvalue_1 + nvalue_2 fmt.Printf("%.1f + %.1f = %.1f", nvalue_1, nvalue_2, res) fmt.Println("\nRound off the result: ", math.Ceil(res)) }
Producción:
0.7 + 0.5 = 1.2 Round off result: 2
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