您好,登錄后才能下訂單哦!
這篇文章給大家分享的是有關shell實現猜數字小游戲的方法的內容。小編覺得挺實用的,因此分享給大家做個參考,一起跟隨小編過來看看吧。
shell實現猜數字游戲的具體代碼如下
#!/bin/bash # 猜數字編程游戲 # 系統隨機生成一個數字,給這個數字定一個范圍(1-60),讓用戶輸入猜的數字,對輸入進行判斷,如果不符合要求,就給予高或低的提示。其他要求: # 全部猜對后則給出猜對使用用的總次數。 # 根據猜的歷史給出擊敗了百分之多少的已經猜過的用戶。 # 并把關鍵的內容(高低以及數字部分)以特殊顏色提示用戶。 # 生成一個1到60之間的隨機數 number_range=$((RANDOM%60)) login(){ read -p '請輸入游戲昵稱: ' name if [ -z "$name" ];then echo -e "\033[1;31m 昵稱不允許為空 \033[0m" exit 1 fi } # 檢查輸入是否合法,含有非數字、為空、大于60小于1都屬于非法行為 check_number(){ if [ -z "$number" -o $(echo "$number"|egrep -o '[^0-9]'|wc -l) -gt 1 ];then echo -e "\033[1;31m 請不要輸入非數字字符 \033[0m" continue elif [ -z "$number" ];then echo -e "\033[1;32m 請不要輸入空字符 \033[0m" else if [ "$number" -lt 1 -o "$number" -gt 60 ];then echo -e "\033[1;31m 請輸入一個1到60之間的數字 \033[0m" continue fi fi } # 提示輸入和正確答案大小比對 prompt(){ if [ "$number" -lt "$number_range" ];then echo -e "\033[1;34m 你猜的數字太小了 \033[0m" elif [ "$number" -gt "$number_range" ];then echo -e "\033[1;35m 你猜的數字太大了 \033[0m" elif [ "$number" -eq "$number_range" ];then echo -e "\033[1;36m 恭喜你猜對了 \033[0m" echo -e "\033[1;31m 一共使用了$count次機會 \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 您是本游戲的第一位用戶哦 \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 '請輸入一個1到60之間的數字: ' number let count++ check_number prompt done } menu
小編再為大家分享一段:shell實現猜數字游戲的代碼
#/********************************* # > 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 當num為0結果非0,故不能作為數字判斷的標準 # expr $num + 0 &> /dev/null ||{ echo '請輸入數字';exit 2; } echo $num |grep -E '^[[:digit:]]+$' &> /dev/null ||{ echo '請輸入數字 ';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
感謝各位的閱讀!關于“shell實現猜數字小游戲的方法”這篇文章就分享到這里了,希望以上內容可以對大家有一定的幫助,讓大家可以學到更多知識,如果覺得文章不錯,可以把它分享出去讓更多的人看到吧!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。