mirror of
https://github.com/jefferyjob/go-easy-utils.git
synced 2025-09-26 19:11:12 +08:00
16 lines
157 B
Go
16 lines
157 B
Go
package mathx
|
|
|
|
import "fmt"
|
|
|
|
func ExampleCeil() {
|
|
res1 := Ceil(3.14)
|
|
res2 := Ceil(-6.5)
|
|
|
|
fmt.Println(res1)
|
|
fmt.Println(res2)
|
|
|
|
// Output:
|
|
// 4
|
|
// -6
|
|
}
|