本文實(shí)例為大家分享了shell實(shí)現(xiàn)猜數(shù)字游戲的具體代碼,供大家參考,具體內(nèi)容如下
#!/bin/bash
# 猜數(shù)字編程游戲
# 系統(tǒng)隨機(jī)生成一個(gè)數(shù)字,給這個(gè)數(shù)字定一個(gè)范圍(1-60),讓用戶(hù)輸入猜的數(shù)字,對(duì)輸入進(jìn)行判斷,如果不符合要求,就給予高或低的提示。其他要求:
# 全部猜對(duì)后則給出猜對(duì)使用用的總次數(shù)。
# 根據(jù)猜的歷史給出擊敗了百分之多少的已經(jīng)猜過(guò)的用戶(hù)。
# 并把關(guān)鍵的內(nèi)容(高低以及數(shù)字部分)以特殊顏色提示用戶(hù)。
# 生成一個(gè)1到60之間的隨機(jī)數(shù)
number_range=$((RANDOM%60))
login(){
read -p '請(qǐng)輸入游戲昵稱(chēng): ' name
if [ -z "$name" ];then
echo -e "\033[1;31m 昵稱(chēng)不允許為空 \033[0m"
exit 1
fi
}
# 檢查輸入是否合法,含有非數(shù)字、為空、大于60小于1都屬于非法行為
check_number(){
if [ -z "$number" -o $(echo "$number"|egrep -o '[^0-9]'|wc -l) -gt 1 ];then
echo -e "\033[1;31m 請(qǐng)不要輸入非數(shù)字字符 \033[0m"
continue
elif [ -z "$number" ];then
echo -e "\033[1;32m 請(qǐng)不要輸入空字符 \033[0m"
else
if [ "$number" -lt 1 -o "$number" -gt 60 ];then
echo -e "\033[1;31m 請(qǐng)輸入一個(gè)1到60之間的數(shù)字 \033[0m"
continue
fi
fi
}
# 提示輸入和正確答案大小比對(duì)
prompt(){
if [ "$number" -lt "$number_range" ];then
echo -e "\033[1;34m 你猜的數(shù)字太小了 \033[0m"
elif [ "$number" -gt "$number_range" ];then
echo -e "\033[1;35m 你猜的數(shù)字太大了 \033[0m"
elif [ "$number" -eq "$number_range" ];then
echo -e "\033[1;36m 恭喜你猜對(duì)了 \033[0m"
echo -e "\033[1;31m 一共使用了$count次機(jī)會(huì) \033[0m"
echo "$name $count" >> Game_history
check_beat
fi
}
# 判斷擊敗了多少歷史玩家
check_beat(){
beat_count=0
for history in $(awk '{print $2}' Game_history)
do
total=$(expr $(cat Game_history|wc -l) - 1)
if [ "$total" -eq 0 ];then
echo -e "\033[1;32m 您是本游戲的第一位用戶(hù)哦 \033[0m"
exit 1
else
if [ "$count" -lt "$history" ];then
let beat_count++
fi
fi
done
echo |awk -v beat_count=$beat_count -v total=$total '{printf "您一共擊敗了%.2f%%的歷史玩家\n",beat_count/total*100}'
exit 1
}
# 主菜單
menu(){
login
count=0
while :
do
read -p '請(qǐng)輸入一個(gè)1到60之間的數(shù)字: ' number
let count++
check_number
prompt
done
}
menu
小編再為大家分享一段:shell實(shí)現(xiàn)猜數(shù)字游戲的代碼
#/*********************************
# > File Name: guessgame.sh
# > Author: liyong
# > Mail: 2550702985@qq.com
# > Created Time: 2017-03-22 01:57
# > Last modified: 2017-03-22 01:57
randNum=$(date +%s%N)
let luckNum=${randNum:0-1:1}
echo $luckNum
let num=luckNum+1
while [ $luckNum -ne $num ];do
read -p'Please input a num: ' num
#expr 當(dāng)num為0結(jié)果非0,故不能作為數(shù)字判斷的標(biāo)準(zhǔn)
# expr $num + 0 > /dev/null ||{ echo '請(qǐng)輸入數(shù)字';exit 2; }
echo $num |grep -E '^[[:digit:]]+$' > /dev/null ||{ echo '請(qǐng)輸入數(shù)字
';exit 2;}
if [ $luckNum -eq $num ];then
echo 'Congratulates';
exit;
elif [ $luckNum -gt $num ];then
echo 'The num you input is smaller'
else
echo 'The num you input is bigger'
fi
done
以上就是本文的全部?jī)?nèi)容,希望對(duì)大家的學(xué)習(xí)有所幫助,也希望大家多多支持腳本之家。
您可能感興趣的文章:- shell腳本實(shí)現(xiàn)猜數(shù)游戲
- Shell實(shí)現(xiàn)猜數(shù)字游戲
- 101個(gè)shell腳本 猜數(shù)字游戲代碼
- Shell腳本實(shí)現(xiàn)的猜數(shù)字小游戲
- Shell腳本實(shí)現(xiàn)猜數(shù)字游戲