- 博客(1)
- 收藏
- 关注
原创 shell脚本中任意输入三个数,输出最大值
Linux下用shell脚本任意输入三个数,输出最大值#!/bin/bashread -p “请输入第一个数:” n1read -p “请输入第二个数:” n2read -p “请输入第三个数:” n3max=$n1if ((n2>max))then max=$n2fiif ((n3>max))then max=$n3fiecho “max=$max”...
2021-06-07 21:06:28 5341
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人