求20以内能被4整除的数之和
时间:2008-10-10 来源:zwc0819
[root@test zwc]# cat 11
#!/bin/sh
a=0
b=0
while [ $b -lt 20 ]
do
b=`expr $b + 1`
if [ "`expr $b \% 4`" -eq "0" ];
then
a=`expr $b + $a`
echo $a
fi
done
[root@test zwc]# chmod 750 11
[root@test zwc]# ./11
4
12
24
40
60
[root@test zwc]# vi 11
[root@test zwc]# cat 11
#!/bin/sh
a=0
b=0
while [ $b -lt 20 ]
do
b=`expr $b + 1`
if [ "`expr $b \% 4`" -eq "0" ];
then
a=`expr $b + $a`
fi
done
echo $a
[root@test zwc]# ./11
60
相关阅读 更多 +