猜數字

#!/bin/bash
flag=true
for i in {1..3};do
echo "第$i機會..."
read -p "請輸入數字:" numbash

if test $num -lt 100 ;then
    echo "數字過小"

elif [ $num -gt 100 ];then
    echo "數字太大了"
else
    echo "猜對了"
    flag=false
    break
fi

doneide

if $flag ;then
echo "3次機會用完"code

fiit

相關文章
相關標籤/搜索