shell 脚本 数字大小排序

shell 实现三个数大小排序

 #!/bin/bash
  
  tmp=0
  echo "input the three number"
  read -p "1:" a
  read -p "2:" b
  read -p "3:" c
  if [ $a -gt $b ]
  then
          tmp=$a
          a=$b
          b=$tmp
  fi
  if [ $a -gt $c ]
  then
          tmp=$a
          a=$c
          c=$tmp
  fi
  if [ $b -gt $c ]
  then
          tmp=$b
          b=$c
          c=$tmp
  fi
  echo "the sorted number is : $a $b $c"

自测:
Loong:/home/yee# sh -x compare.sh 
+ tmp=0
+ echo 'input the three number'
input the three number
+ read -p 1: a
1:23
+ read -p 2: b
2:43
+ read -p 3: c
3:35
+ '[' 23 -gt 43 ']'
+ '[' 23 -gt 35 ']'
+ '[' 43 -gt 35 ']'
+ tmp=43
+ b=35
+ c=43
+ echo 'the sorted number is : 23 35 43'
the sorted number is : 23 35 43
Loong:/home/yee# sh -x compare.sh 
+ tmp=0
+ echo 'input the three number'
input the three number
+ read -p 1: a
1:12
+ read -p 2: b
2:13
+ read -p 3: c
3:16
+ '[' 12 -gt 13 ']'
+ '[' 12 -gt 16 ']'
+ '[' 13 -gt 16 ']'
+ echo 'the sorted number is : 12 13 16'
the sorted number is : 12 13 16
Loong:/home/yee# sh -x compare.sh 
+ tmp=0
+ echo 'input the three number'
input the three number
+ read -p 1: a
1:54
+ read -p 2: b
2:43
+ read -p 3: c
3:32
+ '[' 54 -gt 43 ']'
+ tmp=54
+ a=43
+ b=54
+ '[' 43 -gt 32 ']'
+ tmp=43
+ a=32
+ c=43
+ '[' 54 -gt 43 ']'
+ tmp=54
+ b=43
+ c=54
+ echo 'the sorted number is : 32 43 54'
the sorted number is : 32 43 54

 

转载于:https://www.cnblogs.com/2567xl/p/11447427.html

  • 1
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值