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


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


ceil()是Ruby中的内置方法,通过保留小数部分的n位精度,返回大于或等于给定数字的最小数字。

用法: num.ceil(ndigits)

参数:该函数需要一个数字和一个n位数字,并保留十进制数字的精度。如果未传递n位数字,则将0设为默认值。


返回值:通过保持小数部分的n位数字的精度,返回大于或等于给定数字的最小数字。

例子1

# Ruby program for ceil() method in Matrix 
  
# Initialize a number  
num1 = -19
  
num2 = -18.97
  
num3 = 18.98
  
  
# Prints ceil() of num 
puts  num1.ceil()  
puts  num2.ceil()  
puts  num3.ceil() 

输出

-19
-18
19

例子2

# Ruby program for ceil() method in Matrix 
  
# Initialize a number  
num1 = -19.897
  
num2 = -18.321
  
num3 = 190.23213
  
  
# Prints ceil() of num 
puts  num1.ceil(1)  
puts  num2.ceil(2)  
puts  num3.ceil(3) 

输出

-19.8
-18.32
190.233


相关用法


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