当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Julia ceil()用法及代码示例


这个ceil()是 julia 中的一个内置函数,用于返回大于或等于指定值 x 的最接近的整数值。

用法: ceil(x)

参数:

  • x:指定值。

返回值:它返回大于或等于指定值 x 的最接近的整数值。

范例1:




# Julia program to illustrate 
# the use of ceil method
  
# Getting the nearest integral value 
# greater than or equal to the
# specified value x.
println(ceil(5))
println(ceil(5.9))
println(ceil(5.5))

输出:

5
6.0
6.0

范例2:


# Julia program to illustrate 
# the use of ceil method
  
# Getting the nearest integral value 
# greater than or equal to the
# specified value x.
println(ceil(2))
println(ceil(2.1))
println(ceil(2.4))
println(ceil(2.5))
println(ceil(2.6))
println(ceil(2.9))

输出:

2
3.0
3.0
3.0
3.0
3.0

相关用法


注:本文由纯净天空筛选整理自Kanchan_Ray大神的英文原创作品 Getting ceiling value of x in Julia – ceil() Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。