1、linux系统中while循环示例
[root@linuxprobe test]# ls test.sh [root@linuxprobe test]# cat test.sh #!/bin/bash echo "the scale of price is 0-999!" ## 输入内容提示 PRICE=`expr $RANDOM % 1000` ## 生成随机的范围变量,0-999 COUNTS=0 ## 定义初始次数为0 while true do read -p "please input your answer:" ANSWER let COUNTS++ ## 等价于 COUNTS=$[ $COUNTS + 1 ] if [ $ANSWER -eq $PRICE ] then echo "right,the price is $PRICE!" echo "you guess $COUNTS times!" exit 0 ## 等价于 exit / exit 1 / break elif [ $ANSWER -gt $PRICE ] then echo "high!" else echo "low!" fi done [root@linuxprobe test]# bash test.sh the scale of price is 0-999! please input your answer:500 low! please input your answer:700 low! please input your answer:800 high! please input your answer:750 high! please input your answer:730 low! please input your answer:740 high! please input your answer:735 right,the price is 735! you guess 7 times!@H_502_78@
版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 [email protected] 举报,一经查实,本站将立刻删除。