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
  • 相关阅读:
    Linux 安装Python3.7
    Linux 修改默认yum源为阿里云
    Linux 安装和配置ActiveMQ Artemis
    Linux 查看内存空间、磁盘空间、进程等信息
    Linux 查询和开启端口
    伤害 等待互斥锁
    深入理解Linux内核之脏页跟踪
    基础——SPI与QSPI的异同,QSPI的具体协议是什么,QSPI有什么用
    浅谈显示器色域:从sRGB到广色域
    Linux SPI 驱动
  • 原文地址:https://www.cnblogs.com/Mahavairocana/p/8280740.html
Copyright © 2011-2022 走看看