perl中的取整函数

发布时间:2020-08-16编辑:脚本学堂
perl中所有的数字都是以浮点数存储的。取整可以使用函数int( EXPR );

perl中所有的数字都是以浮点数存储的。
取整可以使用函数int( EXPR );

注意: (int)(127.094)是不行的。

下面来自perldoc的说明:
int EXPR

int

Returns the integer portion of EXPR. If EXPR is omitted, uses $_ . You should not use this function for rounding: one because it truncates towards 0 , and two because machine representations of floating point numbers can sometimes produce counterintuitive results. For example, int(-6.725/0.025) produces -268 rather than the correct -269; that's because it's really more like -268.99999999999994315658 instead. Usually, the sprintf, printf, or the POSIX::floor and POSIX::ceil functions will serve you better than will int().
[root@localhost bwa]# perl -e '$t=int(1235555599/100); print "$tn"'
12355555
[root@localhost bwa]# perl -e '$t=int(-1235555599/100); print "$tn"'
-12355555