February 08 2018 Thuesday
Weather : clear;
1、需求: 写一个脚本: 计算100以内所有能被3整除的正整数的和。[root@Dasoncheng sbin]# cat z.sh #!/bin/bashsum=0m=3for n in `seq 1 100`;do if [ $[$n%$m] -eq 0 ]; then sum=$[ $sum + $n ] fidoneecho $sum
本文共 274 字,大约阅读时间需要 1 分钟。
Weather : clear;
1、需求: 写一个脚本: 计算100以内所有能被3整除的正整数的和。[root@Dasoncheng sbin]# cat z.sh #!/bin/bashsum=0m=3for n in `seq 1 100`;do if [ $[$n%$m] -eq 0 ]; then sum=$[ $sum + $n ] fidoneecho $sum
转载于:https://my.oschina.net/u/3651233/blog/1620376