Shell Script 四則運算. a=3 b=6. 加 c=`expr $a + $b`. c=$(($a + $b)). 減 d=`expr $b - $a`. d=$(($b - $a)). 乘 e=`expr $a \* $b`.
確定! 回上一頁