编辑代码
Shell/Bash代码
运行
num=0
while
((
$num
<= 500));
do
if
((
$num
% 7 == 0));
then
echo
$num
fi
let
num++
done