📜  Ruby Float ceil() 方法与示例

📅  最后修改于: 2022-05-13 01:55:09.919000             🧑  作者: Mango

Ruby Float ceil() 方法与示例

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

示例 #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