很多时候,在求解数学表达式时,我们需要计算数字的平方根。
为了解决这个问题,像其他编程语言一样,Perl为我们提供了内置函数sqrt(),该函数可用于计算数字的平方根。
用法: sqrt value
返回值:传递的值的平方根
注意:sqrt()只能计算正值的平方根。
示例1:
#!/usr/bin/perl
# Calculating square root using sqrt()
$square_root = sqrt(64);
# Printing the result
print "Squareroot of 64 is: $square_root";
输出:
Squareroot of 64 is: 8
示例2:
#!/usr/bin/perl
# Calculating square root using sqrt()
$square_root = sqrt(16);
# Printing the result
print "Squareroot of 16 is: $square_root";
输出:
Squareroot of 16 is: 4
相关用法
- Perl int()用法及代码示例
- Perl oct()用法及代码示例
- Perl log()用法及代码示例
- Perl ord()用法及代码示例
- Perl each()用法及代码示例
- Perl abs()用法及代码示例
- Perl tell()用法及代码示例
- Perl exp用法及代码示例
- Perl sin()用法及代码示例
- Perl cos()用法及代码示例
- Perl chr()用法及代码示例
- Perl hex用法及代码示例
- Perl uc()用法及代码示例
- Perl chop()用法及代码示例
- Perl return()用法及代码示例
注:本文由纯净天空筛选整理自Code_Mech大神的英文原创作品 Perl | sqrt() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。