您好,登錄后才能下訂單哦!
一、判斷結構
if判斷結構
if expression; then
command1
command2
fi
if/else判斷結構
if expression; then
command
else
command
fi
if/elif/else判讀結構
if expression; then
command
elif expression; then
command
elif expression; then
command
…
fi
case結構
case VAR in
var1) command1 ;;
var2) command2 ;;
…
*)command ;;
esac
二、循環結構
1、for循環
for variable in(list)
do
command
done
2、類C的for循環
for((expression1;expression2;expression3))
do
command
done
3、while循環
while expression
do
command
done
4、until循環
until expression
do
command
done
5、select循環
select MENU in (list)
do
command
done
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。