天天看点

任意3个数,判断最大数

#!/bin/bash

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 $n1 ] 

then

MAX=$n2

fi

if [ $n3 -ge $MAX ]

MAX=$n3

本文转自 15816815732 51CTO博客,原文链接:http://blog.51cto.com/68686789/1692084