博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
任意3个数,判断最大数
阅读量:6403 次
发布时间:2019-06-23

本文共 303 字,大约阅读时间需要 1 分钟。

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

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

转载地址:http://auiea.baihongyu.com/

你可能感兴趣的文章
小程序开发注意事项
查看>>
ECMAScript7规范中的instanceof操作符
查看>>
Hadoop HDFS原理分析
查看>>
【webpack4】基本配置和入门api
查看>>
Mac使用ssh公钥登录Linux
查看>>
【366天】跃迁之路——程序员高效学习方法论探索系列(实验阶段124-2018.02.06)...
查看>>
POJ3070-Fibonacci(矩阵快速幂)
查看>>
[vue插件]基于vue2.x的电商图片放大镜插件
查看>>
标准的组件结构
查看>>
vue——一个页面实现音乐播放器
查看>>
SVG 扬帆起航
查看>>
NET Core-学习笔记(二)
查看>>
职业生涯上的点点滴滴
查看>>
Linux下添加新硬盘,分区及挂载
查看>>
一起来将vscode变成私人定制笔记本
查看>>
Flutter 云音乐
查看>>
RecyclerView实现多type页面
查看>>
个人的web商城网站
查看>>
debian fcitx
查看>>
排中律与实无穷问题的性质分析
查看>>