首页 > 代码库 > 用shell实现打印600-700 之间的偶数

用shell实现打印600-700 之间的偶数

#!/bin/bash
for i in {600..700}
do
count=`expr $i % 2` 
if [ $count -eq 0 ]
then
out="$out $i"
fi
done
echo $out

本文出自 “luosea” 博客,请务必保留此出处http://luosea.blog.51cto.com/8476080/1928081

用shell实现打印600-700 之间的偶数