當前位置:首頁 » Perl » Perl abs()函數

Perl abs()函數

Perl abs()函數,abs()函數學習例子,abs()函數實例代碼,abs()函數教學等

語法

abs VALUE

abs


定義和用法

返回其參數的絕對值。 如果通過純整數的值,然後將返回它;但是,如果一個字符串傳遞,那麼它將返回零。 若該值被忽略,則使用$_

返回值

  • 返回其參數的絕對值。

例子

以下是一段代碼:

#!/usr/bin/perl

$par1 = 10.25;
$par2 = 20;
$par3 = "ABC";
#by www.gitbook.net
$abs1 = abs($par1);
$abs2 = abs($par2);
$abs3 = abs($par3);

print "Abs value of par1 is $abs1\n" ;
print "Abs value of par2 is $abs2\n" ;
print "Abs value of par3 is $abs3\n" ;

這將產生以下結果

Abs value of par1 is 10.25
Abs value of par2 is 20
Abs value of par3 is 0