shell浮點運算:前N分之一累加求和

需求:計算1+1/2+1/3+...+1/n的和shell PS:不知道爲啥shell不支持浮點數的運算??? bash #!/bin/bash echo -n "please:" read NUM sum=0 for((i=1;i<=$NUM;i++)) do j=$(echo "1 $i"|awk '{printf "%.2f\n",$1/$2}') echo $j sum=$(echo "$
相關文章
相關標籤/搜索