How to use Ceil function in Go

1 Answer

0 votes
package main 
   
import ( 
    "fmt"
    "math"
) 
   
func main() { 
    res_1 := math.Ceil(4 / 3) 
    res_2 := math.Ceil(2.899) 
    res_3 := math.Ceil(2.199) 
    res_4 := math.Ceil(-5.41) 
   
    fmt.Printf("%.1f\n", res_1) 
    fmt.Printf("%.1f\n", res_2) 
    fmt.Printf("%.1f\n", res_3) 
    fmt.Printf("%.1f\n", res_4) 
} 
 
 
 
/*
run:
 
1.0
3.0
3.0
-5.0
 
*/

 



answered Aug 4, 2020 by avibootz
edited Aug 4, 2020 by avibootz
...