zoukankan      html  css  js  c++  java
  • 如来神掌第二式第六招----Shell游戏案例之猜数字

    ###############################################################################
    # Name : Mahavairocana                                                                                                                                           
    # Author : Mahavairocana                                                                                                                                         
    # QQ : 10353512                                                                                                                                                    
    # WeChat : shenlan-qianlan                                                                                                                                      
    # Blog : http://www.cnblogs.com/Mahavairocana/                                                                                                       
    # Description : You are welcome to reprint, or hyperlinks to indicate the                                                                        
    #                    source of the article, as well as author information.                                                                                ###############################################################################

    #!/bin/bash
    
    ####################################define color##########################
    red="33[31m"
    green="33[32m"
    yellow="33[33m"
    color="33[0m"
    check_number(){
    expr $num1 + 1 &>/dev/null
    if [ $? -ne 0 ];then
       echo -e "please input $red number $color"
       continue 1
    elif [ -z $num1 ];then
       echo -e "$yellow Can't be empty $color"
       continue 2
    elif [ $num1 -gt 59 ];then
       echo -e "$green Can't great than 59 $color"
       continue 3
    fi
    }
     
    
    guess_number(){
    if [ $num1 -gt $num ];then
       echo -e " $yellow too big $color"
    elif [ $num1 -eq $num ];then
       echo -e "$green congratulation, you  have guessed ! $color"
    elif [ $num1 -lt $num ];then
       echo -e "$green too small $color"
    fi
    }
     
    main(){
    while true
    do
    num=$(date +%S)
    read -p "please input number 1-59:" num1
     
    check_number
     
    guess_number
    done
    }
     
    main
  • 相关阅读:
    [转载]使用uiautomator做UI测试
    [转载]Android相关开发网站
    [转载]Android开发必备的21个免费资源和工具
    c# List集合的Find方法适用
    c# GridView Footor列求合计
    c# List集合排序
    mysql中插入多条记录-微软批处理
    mysql中插入多条记录-微软批处理
    VS2005快捷键
    LinqToSql 小例子
  • 原文地址:https://www.cnblogs.com/Mahavairocana/p/8280740.html
Copyright © 2011-2022 走看看