當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Perl int()用法及代碼示例


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


相關用法


注:本文由純淨天空篩選整理自Code_Mech大神的英文原創作品 Perl | int() function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。