---------------------------------------------------------------------------------------------------------
shell中for轮回用法
shell语法好贫苦的,一个轮回都弄了一会,找了几个分歧的***来完成输入1-100间能够被3整除的数
1.用(())
#!/bin/bash
clear
for((i=1;i<100;i++))
for
do
if((i%3==0))
then
echo$i
continue
fi
done
2.利用`seq100`
#!/bin/bash
clear
foriin`seq100`
do
if((i%3==0))
then
echo$i
continue
fi
done
3.利用while
#!/bin/bash
clear
i=1
while(($i<100))
do
if(($i%3==0))
then
echo$i
fi
i=$(($i+1))
done