码迷,mamicode.com
首页 > 系统相关 > 详细

Linux中的数值运算

时间:2017-07-13 01:02:54      阅读:353      评论:0      收藏:0      [点我收藏+]

标签:linu   local   运算   linux中   linux   左右   inux   host   数值   

方法1:
  declare -i 变量=$变量1+$变量2
    a.变量和=之间不能有空格
    b.变量和+之间不能有空格
[root@localhost ~]# a=1
[root@localhost ~]# b=2
[root@localhost ~]# declare -i c=$a+$b
[root@localhost ~]# echo $c
3

方法2:
  变量=$(expr $变量 + $变量)
    a.=左右两边不能有空格
    b.+左右两边必须有空格
[root@localhost ~]# a=1
[root@localhost ~]# b=2
[root@localhost ~]# c=$(expr $a + $b)
[root@localhost ~]# echo $c
3

方法3:
  变量=$((运算式))
    a.=左右两边不能有空格
    b.运算式随便写,很自由
[root@localhost ~]# a=1
[root@localhost ~]# b=2
[root@localhost ~]# c=$(($a + $b))
[root@localhost ~]# echo $c
3

方法3:
  变量=$[运算式]
    a.=左右两边不能有空格
    b.运算式随便写,很自由
[root@localhost ~]# a=1
[root@localhost ~]# b=2
[root@localhost ~]# c=$[$a + $b + 1]
[root@localhost ~]# echo $c
4

Linux中的数值运算

标签:linu   local   运算   linux中   linux   左右   inux   host   数值   

原文地址:http://www.cnblogs.com/413xiaol/p/7158216.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!