Ruby 数值 to_int()函数

Ruby 数值 to_int()函数

to_int() 是Ruby中一个内置的方法,用于返回给定数字的整数部分。

语法 :num.to_int()

参数 :该函数需要返回整数部分的数字。

返回值 :它返回整数部分。

例子 1 :

# Ruby program for to_int()
# method in Numeric
  
# Initialize a number 
num1 = 15.778
  
# Prints the integer part
puts num1.to_int()

输出:

15

例2 :

# Ruby program for to_int()
# method in Numeric
  
# Initialize a number 
num1 = -19.86
  
# Prints the integer part
puts num1.to_int()

输出:

-19

Python教程

Java教程

Web教程

数据库教程

图形图像教程

大数据教程

开发工具教程

计算机教程