bash编程之算术运算

shell不支持浮点数;计算结果中的浮点数会被圆整为整数,不是四舍五入,例如:1.23取值为1, 1.99取值为1。

算术运算的实现方式:假设A=5,B=9

$[expression]:例如$[$A+$B]

$((expression)): 例如$(($A+$B))

let expression: 例如 let E=$A+$B

expr expression: F=`expr $A + $B

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:http://www.heiqu.com/6deafd3469a8730d6715d717de98bbdf.html