亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

使用SHELL完成兩個數字的大小比較

發布時間:2020-08-05 16:46:19 來源:網絡 閱讀:1418 作者:弓長善慈 欄目:開發技術

簡要說明:

提示用戶輸入兩個數字;

判斷輸入的內容是否都為數字;

數字做計算并反饋結果;

計算完畢后詢問客戶是否繼續使用;

給用戶提供隨時退出的方法。

[root@lb02 scripts]# cat jisuan2.sh 

#!/bin/bash


###thank_oldboy

###2016/3/6

###i wish you all the best.

. /etc/init.d/functions


### read number.

function read_number(){

 read -p "please enter the number1:" num1

 read -p "please enter the number2:" num2

 panduan_number

}


### judge $number1 $number2 both are number.

function panduan_number() {

 expr $num1 + $num2 &>/dev/null

 [ $? -ne 0 ] && {

  [[ $num1 == exit || $num2 == exit ]] && {

   echo "you had choice leave,bye."

   exit 0

  } || {

  echo "USAGE:you must enter two numbers, or enter exit to leave."

  read_number

  }

 } || judge_number

}


### judge continue or exit.

function continue_or_exit() {

 read -p "please enter go to continue or enter out to leave: " str

 case "$str" in 

  go)

     read_number

     

     ;;

  out)

     echo "hope to see you again,bye."

     exit 0


     ;;

  *)

     echo "USAGE:enter go or out:"

     continue_or_exit

     ;;

 esac

}


### expr $number1 $number2.

function judge_number() {

[ $num1 -eq $num2 ] && { 

 echo "$num1 equal $num2."

 continue_or_exit

}

[ $num1 -gt $num2 ] && {

 echo "$num1 greater than $num2."

 continue_or_exit

}

[ $num1 -lt $num2 ] && {

 echo "$num1 lower than $num2."

 continue_or_exit

}

}



### the gate of the script. 

function main() {

 read_number

}

main


向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

黑水县| 正定县| 广昌县| 安阳县| 五台县| 南昌市| 潮安县| 南澳县| 郎溪县| 东阿县| 长汀县| 海门市| 海原县| 凤冈县| 德兴市| 乌拉特后旗| 杭锦旗| 芷江| 文登市| 延寿县| 焉耆| 岳阳市| 普兰县| 临江市| 滕州市| 安龙县| 米林县| 嘉义市| 保德县| 静乐县| 公主岭市| 龙川县| 罗甸县| 腾冲县| 望都县| 隆安县| 鲁山县| 吉林省| 绥化市| 崇明县| 景谷|