shell脚本练习(12.10)

网友投稿 259 2022-10-28


shell脚本练习(12.10)

任意三个数,判断最大数

思路:1.先要输出三个数字

2.假设第一个数字是最大数

3.用第二个数字和第一个数字对比,如果第二个数字大最大值就变成第二个数字

4.用第三个数字和第一个数字对比,如果第三个数字大最大值就变成第三个数字

5.输出最大的数字

vim duibi.sh

#!/bin/bash

#written by lizheng

#about duibi

echo "please enter three number:"

read -p "the first number is:" n1

read -p "the second number is:" n2

read -p "the third number is:" n3

let max=$n1

if [ $n2 -ge $n2 ] ;then

max=$n2

fi

if [ $n3 -ge $n1 ] ;then

max=$n3

fi

echo "the max number is $max."


版权声明:本文内容由网络用户投稿,版权归原作者所有,本站不拥有其著作权,亦不承担相应法律责任。如果您发现本站中有涉嫌抄袭或描述失实的内容,请联系我们jiasou666@gmail.com 处理,核实后本网站将在24小时内删除侵权内容。

上一篇:Java基础之序列化与反序列化详解
下一篇:理解VMware的三种工作模式
相关文章

 发表评论

暂时没有评论,来抢沙发吧~