兩個數計算的三種方法

#!/bin/bash
#兩個數計算的三種方法
a=10
b=20
echo $(($a + $b))

echo `expr $a + $b`

let "c=$a + $b"
echo $c
相關文章
相關標籤/搜索