Chinaunix首页 | 论坛 | 博客
  • 博客访问: 2291989
  • 博文数量: 168
  • 博客积分: 6641
  • 博客等级: 准将
  • 技术积分: 1996
  • 用 户 组: 普通用户
  • 注册时间: 2007-06-02 11:49
文章存档

2020年(4)

2019年(6)

2017年(1)

2016年(3)

2015年(3)

2014年(8)

2013年(2)

2012年(12)

2011年(19)

2010年(10)

2009年(3)

2008年(17)

2007年(80)

分类: LINUX

2007-06-02 12:20:43

#!/bin/bash
#A Little Game of Guess A Integer Between 0 ~ 99
#By kenthy#qingdaonews.com 2006-08-15
 
SNUM=`expr $RANDOM % 100`
echo "I just created an integer between 0~99 , and can you guess what it is ?"
GTIMES=0
while true
do
 echo -n "Your Surmise: "
 read GNUM
 GTIMES=`expr $GTIMES + 1`
 if [ $GNUM -eq $SNUM ] ; then
  echo "Congratuations!!! You'v Got It!!!"
  echo -e "The Number Is : $SNUM Your Guess Times Is : $GTIMES"
  exit 0
 elif [ $GNUM -gt $SNUM ] ; then
  echo "Not The Right Result. Reduce It And Try It Again."
  continue
 else
  echo "Not The Right Result. Increase it And Try It Again."
 fi
done
阅读(1285) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~