码迷,mamicode.com
首页 > 其他好文 > 详细

任意3个数,判断最大数

时间:2015-09-07 01:57:07      阅读:161      评论:0      收藏:0      [点我收藏+]

标签:linux--基础--案例

#!/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 ]

then

MAX=$n3

fi

echo "the max number is $MAX"

本文出自 “IT屌丝” 博客,请务必保留此出处http://68686789.blog.51cto.com/10438688/1692084

任意3个数,判断最大数

标签:linux--基础--案例

原文地址:http://68686789.blog.51cto.com/10438688/1692084

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!