首页 > 代码库 > shell 使用Seq算出1-100的奇数之和

shell 使用Seq算出1-100的奇数之和

#! /bin/bash
echo 计算出1-100的奇数之和
sum=0
for i in $( seq 1 2 100)
do
let "sum+=i"
done
echo result=$sum

  

[root@lenny Desktop]# ./countjishu.sh 
计算出1-100的奇数之和
result=2500

  

shell 使用Seq算出1-100的奇数之和