Q:

Golang program to demonstrate the math.Ceil() function

belongs to collection: Golang Basic Programs

0

In this program, we will perform a ceiling operation on floating-point value using math.Ceil() function and print the result on the console screen.

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

Program/Source Code:

The source code to demonstrate the math.Ceil() function is given below. The given program is compiled and executed successfully.

// Golang program to demonstrate the 
// math.Ceil() function.

package main
import "fmt"
import "math"

func main() {
    var num1 float64  = 10.25
    var num2 float64  = 20.52
    
    var result float64  = 0
   
    result=math.Ceil(num1)
    fmt.Printf("Result is : %f",result)
    
    result=math.Ceil(num2)
    fmt.Printf("\nResult is : %f",result) 
}

Output:

Result is : 11.000000
Result is : 21.000000

In the above program, we declare the package main. The main package is used to tell the Go language compiler that the package must be compiled and produced the executable file. Here, we imported the fmt package that includes the files of package fmt then we can use a function related to the fmt package.

Here, we also included the math package to use math-related functions and created the main() function. The main() function is the entry point for the program. Here, we created 3 floating-point variables num1num2result, which is initialized with 10.2520.520 respectively.

Here, we used Ceil() function of the math package to perform ceiling operation and print the result on the console screen.

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

Golang Basic Programs

This question belongs to these collections

Similar questions


need a help?


find thousands of online teachers now
Golang program to demonstrate the math.Floor() fun... >>
<< Golang program to find the smallest number between...