Perl中的int()函數返回給定值的整數部分。如果未提供值,則返回$_。注意$_是默認輸入,在這種情況下為0。 int()函數不進行舍入。為了將值四舍五入為整數,使用sprintf。
用法: int(VAR)
參數:
VAR:要轉換為整數的值
返回:返回VAR的整數部分
範例1:
#!/usr/bin/perl
# Passing positive decimal value
$int_val = int(19.8547);
print"Integer value is $int_val\n";
# Passing negative decimal value
$int_val = int(-18.659);
print"Integer value is $int_val\n";
輸出:
Integer value is 19 Integer value is -18
範例2:
#!/usr/bin/perl
# Passing fractional positive value
$int_val = int(17 / 4);
print"Integer value is $int_val\n";
# Passing fractional negative value
$int_val = int(-17 / 4);
print"Integer value is $int_val\n";
輸出:
Integer value is 4 Integer value is -4
相關用法
- Perl hex用法及代碼示例
- Perl chr()用法及代碼示例
- Perl abs()用法及代碼示例
- Perl ord()用法及代碼示例
- Perl uc()用法及代碼示例
- Perl tell()用法及代碼示例
- Perl cos()用法及代碼示例
- Perl each()用法及代碼示例
- Perl exp用法及代碼示例
- Perl log()用法及代碼示例
- Perl oct()用法及代碼示例
- Perl sin()用法及代碼示例
- Perl AUTOLOAD用法及代碼示例
- Perl chop()用法及代碼示例
- Perl split()用法及代碼示例
注:本文由純淨天空篩選整理自Code_Mech大神的英文原創作品 Perl | int() function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。