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


Ruby Float ceil()用法及代码示例


ceil()是一个浮点类方法,它返回传递的浮点值的ceil值。

用法:float.ceil()

参数:浮点值,即获得其ceil值
十进制数字(默认= 0)


返回:最小数字> =以n位小数点精度浮点。
对于-ve精度:整数,至少n位数字.abs尾随零。
对于+ ve精度:浮点数。

范例1:

# Ruby code for ceil() method 
  
# declaring float values 
a = -56.23333333
  
# declaring float values 
b = 56.784
  
# declaring float values 
c = 222.8868686
  
# ceil value of a 
puts "ceil value of a:#{a.ceil}\n\n"
  
# ceil value of b 
puts "ceil value of b:#{b.ceil}\n\n"
  
# ceil value of c 
puts "ceil value of c:#{c.ceil}\n\n"

输出:

ceil value of a:-56

ceil value of b:57

ceil value of c:223

范例2:

# Ruby code for ceil() method 
  
# declaring float values 
a = -0.78779393
  
# declaring float values 
b = -50006.784 + 34
  
# declaring float values 
c = 289 + 22.8868686
  
# ceil value of a 
puts "ceil value of a:#{a.ceil}\n\n"
  
# ceil value of b 
puts "ceil value of b:#{b.ceil}\n\n"
  
# ceil value of c 
puts "ceil value of c:#{c.ceil}\n\n"

输出:

ceil value of a:0

ceil value of b:-49972

ceil value of c:312


相关用法


注:本文由纯净天空筛选整理自mayank5326大神的英文原创作品 Ruby Float ceil() method with example。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。