linux 系统中while循环示例


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!

 


免责声明!

本站转载的文章为个人学习借鉴使用,本站对版权不负任何法律责任。如果侵犯了您的隐私权益,请联系本站邮箱yoyou2525@163.com删除。



 
粤ICP备18138465号  © 2018-2025 CODEPRJ.COM