主頁(yè) > 知識(shí)庫(kù) > Shell腳本實(shí)現(xiàn)猜數(shù)字游戲

Shell腳本實(shí)現(xiàn)猜數(shù)字游戲

熱門標(biāo)簽:合肥電銷外呼系統(tǒng)供應(yīng)商 電商外呼系統(tǒng)排名 蘭州電銷機(jī)器人加盟 沈陽ai電銷智能機(jī)器人 AI智能電銷機(jī)器人壞處 地圖標(biāo)注審核周期 如何申請(qǐng)400的電話呀 電話機(jī)器人對(duì)家居行業(yè)幫助大嗎 黑暗之魂3地圖標(biāo)注

本文實(shí)例為大家分享了Shell實(shí)現(xiàn)猜數(shù)字游戲的具體代碼,供大家參考,具體內(nèi)容如下

這里的guem可以隨便寫,比如A、B之類的也可以

vim guem.sh

編輯腳本

#!/bin/bash
init()
{
echo "    猜數(shù)字游戲!!!      "
}
game()
{
number=$[$RANDOM%100]
while :
do
read -p "輸入你要猜測(cè)的數(shù)字: " n1
n2=`echo $n1 | sed 's/[0-9]//g'`
if [ ! -z $n2 ]
  then
    echo "你輸入的不是一個(gè)數(shù)字."
    continue
fi
if [ $n1 == $number ]
  then
    echo "你猜對(duì)了."
    read -p "你還想再玩一次么?(yes/no)" an1
    while true
        do
            case $an1 in
            yes)
            game
            break
            ;;
            no)
            break
            ;;
            *)
            exit
            esac
    done
    break
#!/bin/bash
init()
{
echo "                   "
echo "    猜數(shù)字游戲!!!      "
}
game()
{
number=$[$RANDOM%100]
while :
do
read -p "輸入你要猜測(cè)的數(shù)字: " n1
n2=`echo $n1 | sed 's/[0-9]//g'`
if [ ! -z $n2 ]
  then
    echo "你輸入的不是一個(gè)數(shù)字."
    continue
fi
if [ $n1 == $number ]
  then
    echo "你猜對(duì)了."
    read -p "你還想再玩一次么?(yes/no)" an1
    while true
        do
            case $an1 in
            yes)
            game
            break
            ;;
            no)
            break
            ;;
            *)
            exit
            esac
    done
    break
            break
            ;;
            no)
            break
            ;;
            *)
            exit
            esac
    done
    break
  elif [ $n1 -gt $number ]
  then
    echo "猜大了."
    continue
  else
    echo "猜小了."
    continue
  fi
done
}
 
 
while true
do
init
echo "1: 開始游戲 "
echo "0: 退出游戲    "
read -p " 請(qǐng)輸入 0或者1:" NUM
 
case $NUM in
1)
    game
    break
    ;;
0)
    break
    ;;
esac

done

以上就是本文的全部?jī)?nèi)容,希望對(duì)大家的學(xué)習(xí)有所幫助,也希望大家多多支持腳本之家。

您可能感興趣的文章:
  • shell腳本實(shí)現(xiàn)猜數(shù)游戲
  • Shell實(shí)現(xiàn)猜數(shù)字游戲
  • shell實(shí)現(xiàn)猜數(shù)字小游戲
  • 101個(gè)shell腳本 猜數(shù)字游戲代碼
  • Shell腳本實(shí)現(xiàn)的猜數(shù)字小游戲

標(biāo)簽:隴南 淮南 河北 河池 黔南 通遼 黔南 常州

巨人網(wǎng)絡(luò)通訊聲明:本文標(biāo)題《Shell腳本實(shí)現(xiàn)猜數(shù)字游戲》,本文關(guān)鍵詞  Shell,腳本,實(shí)現(xiàn),猜,數(shù)字,;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問題,煩請(qǐng)?zhí)峁┫嚓P(guān)信息告之我們,我們將及時(shí)溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無關(guān)。
  • 相關(guān)文章
  • 下面列出與本文章《Shell腳本實(shí)現(xiàn)猜數(shù)字游戲》相關(guān)的同類信息!
  • 本頁(yè)收集關(guān)于Shell腳本實(shí)現(xiàn)猜數(shù)字游戲的相關(guān)信息資訊供網(wǎng)民參考!
  • 推薦文章