溫馨提示×

溫馨提示×

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

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

shell實(shí)現(xiàn)猜數(shù)字小游戲的方法

發(fā)布時(shí)間:2021-04-06 09:37:10 來源:億速云 閱讀:303 作者:小新 欄目:開發(fā)技術(shù)

這篇文章給大家分享的是有關(guān)shell實(shí)現(xiàn)猜數(shù)字小游戲的方法的內(nèi)容。小編覺得挺實(shí)用的,因此分享給大家做個(gè)參考,一起跟隨小編過來看看吧。

shell實(shí)現(xiàn)猜數(shù)字游戲的具體代碼如下

#!/bin/bash
# 猜數(shù)字編程游戲
# 系統(tǒng)隨機(jī)生成一個(gè)數(shù)字,給這個(gè)數(shù)字定一個(gè)范圍(1-60),讓用戶輸入猜的數(shù)字,對輸入進(jìn)行判斷,如果不符合要求,就給予高或低的提示。其他要求:
# 全部猜對后則給出猜對使用用的總次數(shù)。
# 根據(jù)猜的歷史給出擊敗了百分之多少的已經(jīng)猜過的用戶。
# 并把關(guān)鍵的內(nèi)容(高低以及數(shù)字部分)以特殊顏色提示用戶。
 
 
# 生成一個(gè)1到60之間的隨機(jī)數(shù)
number_range=$((RANDOM%60))
 
login(){
  read -p '請輸入游戲昵稱: ' name
  if [ -z "$name" ];then
    echo -e "\033[1;31m 昵稱不允許為空 \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 請不要輸入非數(shù)字字符 \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 請輸入一個(gè)1到60之間的數(shù)字 \033[0m"
      continue
    fi
  fi
}
 
# 提示輸入和正確答案大小比對
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 恭喜你猜對了 \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 您是本游戲的第一位用戶哦 \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 '請輸入一個(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 '請輸入數(shù)字';exit 2; }
  echo $num |grep -E '^[[:digit:]]+$' &> /dev/null ||{ echo '請輸入數(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

感謝各位的閱讀!關(guān)于“shell實(shí)現(xiàn)猜數(shù)字小游戲的方法”這篇文章就分享到這里了,希望以上內(nèi)容可以對大家有一定的幫助,讓大家可以學(xué)到更多知識(shí),如果覺得文章不錯(cuò),可以把它分享出去讓更多的人看到吧!

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI