Ruby 整数ceil函数及示例

Ruby 整数ceil函数及示例

Ruby中的 ceil 函数返回大于或等于int的最小数字,精度为小数点后第 ndigits 位。当给出的精度为负数时,返回值是一个至少有ndigits .abs 尾部零的整数。当 ndigits 为正数时,它将返回self。

语法 :(number).ceil(ndigits)

参数 : 该函数接收要返回的ceil值的整数和一个指定要返回的精度的参数 ndigits

返回值 :该函数返回大于或等于它的最小的整数。

例子 #1 :

# Ruby program of ceil function
  
# Initializing the numbers 
num1 = 10
num2 = 17
num3 = 17.5
num4 = 21.5
   
# Prints the ceil value
puts num1.ceil
puts num2.ceil(1)
puts num3.ceil(0)
puts num4.ceil(2)

输出:

10
17.0
18
21.5

例子#2

# Ruby program of ceil function
  
# Initializing the numbers 
num1 = 13
num2 = -90
num3 = 90
num4 = 81.7
   
# Prints the ceil value
puts num1.ceil
puts num2.ceil(2)
puts num3.ceil(-1)
puts num4.ceil(0)

输出:

13
-90.0
90
82

Python教程

Java教程

Web教程

数据库教程

图形图像教程

大数据教程

开发工具教程

计算机教程