求100之内的数的和
时间:2008-10-10 来源:zwc0819
[root@test zwc]# cat first
#!/bin/sh
a=0
b=0
while [ $b -lt 100 ]
do
b=`expr $b + 1`
a=`expr $a + $b`
done
echo $a
[root@test zwc]# chmod 750 first
[root@test zwc]# ./first
5050
相关阅读 更多 +