Ruby BigDecimal类的ceil值

Ruby BigDecimal类的ceil值

BigDecimal#ceil() : ceil()是BigDecimal类的一个方法,用于返回传递的BigDecimal值的上限。

语法。BigDecimal.ceil()

参数:

- BigDecimal值,用于获取其最大值

- 十进制数字(默认=0)。

返回。

  • - 对于小数点精度为ndigits的BigDecimal来说,最小的数字>=BigDecimal。

- 对于小数点精度为+的BigDecimal来说,最小的数字。

代码#1:ceil()方法的例子

# Ruby code for ceil() method
  
# loading BigDecimal
require 'bigdecimal'
  
# declaring BigDecimal
a = 42.1**13
  
# declaring BigDecimal
b = -BigDecimal("10")
  
# declaring BigDecimal
c = -(22 ** 7.1) * 10
  
# 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 : 1305170490200643862528

ceil value of b : -10

ceil value of c : -33978252067

代码 #2 : ceil()方法的例子

# Ruby code for ceil() method
  
# loading BigDecimal
require 'bigdecimal'
  
# declaring BigDecimal
a = 12**12 - 27
  
# declaring BigDecimal
b = BigDecimal('10')-(22 ** 7.1) ** 10
  
# declaring BigDecimal
c = BigDecimal('-3')
  
  
# 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 : 8916100448229 
ceil value of b : -20512110073058639999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999990 
ceil value of c : -3 

Python教程

Java教程

Web教程

数据库教程

图形图像教程

大数据教程

开发工具教程

计算机教程