W3Cschool
恭喜您成為首批注冊用戶
獲得88經(jīng)驗值獎勵
if-else
語句同if
用于在代碼語句的順序執(zhí)行流程中執(zhí)行條件任務(wù)。當判斷為true
,執(zhí)行第一組給定的代碼語句。當判斷為false
,執(zhí)行另一組給定的代碼語句。
語法:
if [ condition ];
then
<if block commands>
else
<else block commands>
fi
注:
- condition 是條件語句。
- block commands 是給定的執(zhí)行語句。
- 可以使用一組以邏輯運算符連接的一個或多個條件。
- 其他塊命令包括一組在條件為false
時執(zhí)行的代碼語句。
- 條件表達式后的分號;
是必須的。
示例:
#!/bin/bash
#when the condition is true
if [ 10 -gt 3 ];
then
echo "10 is greater than 3."
else
echo "10 is not greater than 3."
fi
#when the condition is false
if [ 3 -gt 10 ];
then
echo "3 is greater than 10."
else
echo "3 is not greater than 10."
fi
執(zhí)行后得到以下結(jié)果:
10 is greater than 3.
3 is not greater than 10.
您可以在一行中編寫完整的if-else
語句以及命令。需要遵循以下規(guī)則:
if
和else
的語句末尾使用;
。示例:
#!/bin/bash
read -p "Enter a value:" value
if [ $value -gt 9 ]; then echo "The value you typed is greater than 9."; else echo "The value you typed is not greater than 9."; fi
執(zhí)行后得到以下結(jié)果:
Enter a value:3
The value you typed is not greater than 9.
同if
語句的嵌套一樣,if-else
語句也能夠嵌套使用。如下示例:
#!/bin/bash
read -p "Enter a value:" value
if [ $value -gt 9 ];
then
if [ $value -lt 11 ];
then
echo "$value>9, $value<11"
else
echo "The value you typed is greater than 9."
fi
else echo"The value you typed is not greater than 9."
fi
執(zhí)行后得到以下結(jié)果:
Enter a value:5
The value you typed is not greater than 9.
Copyright©2021 w3cschool編程獅|閩ICP備15016281號-3|閩公網(wǎng)安備35020302033924號
違法和不良信息舉報電話:173-0602-2364|舉報郵箱:jubao@eeedong.com
掃描二維碼
下載編程獅App
編程獅公眾號
聯(lián)系方式:
更多建議: