条件 if

if condition
  then
  statements
else
  statements
fi

循环 for while

  • for 自己知道要循环几次
for variable in values  # 遍历了values内所有元素,有几个元素就循环了几次
do
  statements
done
  • while 不知道要循环几次
while condition
do
  statements
done
posted on 2026-01-30 09:29  中年二班  阅读(0)  评论(0)    收藏  举报