Shell腳本之數字大小排列(小到大)

腳本內容:web #!/bin/bash read -p '請輸入一個數字:' num1 read -p '請輸入一個數字:' num2 read -p '請輸入一個數字:' num3 tmp=0 #若是 num1 大於 num2,就把 num1 和和 num2 的值對調,確保 num1 變量中存的是最小值 if [ $num1 -gt $num2 ];then tmp=$num1 num1=$
相關文章
相關標籤/搜索