打印能被2和3整除的數

#!/bin/bahs
for i in {1..10};do
a=$(($i%2))
b=$(($i%3))
if test $a -eq 0 -o $b -eq 0 ; then
echo $i
fiide

相關文章
相關標籤/搜索