linux shell腳本練習題(2)

1.編寫shell腳本,計算1~100的和。 要求 使用while 和 for 循環分別實現web for循環:shell #!/bin/bash sum=0 for ((i=1; i<=100; i++)); { sum=`expr $i + $sum`; } echo $sum while循環:bash #!/bin/bash i=1
相關文章
相關標籤/搜索