當前位置:首頁 » 操作系統 » linuxshell數字

linuxshell數字

發布時間: 2024-02-07 15:36:40

linux命令 SHELL編程:從鍵盤輸入一個數,若大於0,則輸出該數;若小於或等於0,則輸出0值。程序怎麼寫

#! /bin/bash
read num
#判斷是否是數字
if [ `echo $num | grep - P '^-?\d+'$ |wc - l ` == 1 ] ; then
#判斷是否大於0
if [ $num >0 ] ; then
echo $num
else
echo 0
fi
else
echo "不是數字"
fi

⑵ linux shell 如何比較兩個整數的大小

linux shell比較兩個整數的大小可以採用以下的代碼:

#!/bin/sh

max=9

min=8

if [ $max -gt $min ]

then

echo 1

else

echo 0

fi

數字的比較:

-eq 相等(equal)

-ne 不等(not equal)

-gt 大於(greater than)

-lt 小於(less than)

-ge 大於等於 (greater than or equal)

-le 小於等於 (less than or equal)

字元串的比較:

[ $str1 = $str2 ] 等於

[ $str1 != $str2 ] 不等於

[ -z $str ]空字元串返回true

[ -n $str ] 或者 [ $str ] 非空字元串返回true

(2)linuxshell數字擴展閱讀:

Shell是系統的用戶界面,提供了用戶與內核進行交互操作的一種介面。它接收用戶輸入的命令並把它送入內核去執行。

shell命令

命令行c

用戶登錄到Linux系統時,可以看到一個shell提示符,標識了命令行的開始。用戶可以在提示符後面輸入任何命令及參數。例如:

$ date

二 11 23 01:34:58 CST 1999

$

用戶登錄時,實際進入了shell,它遵循一定的語法將輸入的命令加以解釋並傳給系統。命令行中輸入的第一個字必須是一個命令的名字,第二個字是命令的選項或參數,命令行中的每個字必須由空格或TAB隔開,格式如下:

$ Command Option Arguments

⑶ linux shell 如何讓數字按要求位數顯示如0顯示為000,10顯示為010

for((i=1;i<=100;i++))
do
a=$((1000+$i))
echo${a:1}
done

⑷ 怎麼在linux shell 里自動輸入一個數字,比如2,然後自動執行一個回車

可以設置read命令計數輸入的字元。當輸入的字元數目達到預定數目時,自動退出,並將輸入的數據賦值給變數。
#!/bin/bash
read -n1 -p "Do you want to continue [Y/N]?" answer
case $answer in
Y | y)
echo "fine ,continue";;
N | n)
echo "ok,good bye";;
*)
echo "error choice";;
esac
exit 0
該例子使用了-n選項,後接數值1,指示read命令只要接受到一個字元就退出。只要按下一個字元進行回答,read命令立即接受輸入並將其傳給變數。無需按回車鍵。

⑸ linux的shell腳本編程,求兩數字間所有偶數的和,我是小白,不太懂。

這部分主要討論數學相關的shell腳本編程。
加法運算
新建一個文件「Addition.sh」,輸入下面的內容並賦予其可執行的許可權。

復制代碼代碼如下:
#!/bin/bash
echo 「Enter the First Number: 」
read a
echo 「Enter the Second Number: 」
read b
x=$(expr "$a" + "$b")
echo $a + $b = $x

輸出結果:

復制代碼代碼如下:

[root@tecmint ~]# vi Additions.sh
[root@tecmint ~]# chmod 755 Additions.sh
[root@tecmint ~]# ./Additions.sh

「Enter the First Number: 」
12
「Enter the Second Number: 」
13
12 + 13 = 25

減法運算

復制代碼代碼如下:

#!/bin/bash
echo 「Enter the First Number: 」
read a
echo 「Enter the Second Number: 」
read b
x=$(($a - $b))
echo $a - $b = $x

注意:這里我們沒有像上面的例子中使用「expr」來執行數學運算。

輸出結果:

復制代碼代碼如下:

[root@tecmint ~]# vi Substraction.sh
[root@tecmint ~]# chmod 755 Substraction.sh
[root@tecmint ~]# ./Substraction.sh

「Enter the First Number: 」
13
「Enter the Second Number: 」
20
13 - 20 = -7

乘法運算

復制代碼代碼如下:

#!/bin/bash
echo 「Enter the First Number: 」
read a
echo 「Enter the Second Number: 」
read b
echo "$a * $b = $(expr $a \* $b)"

輸出結果:

復制代碼代碼如下:

[root@tecmint ~]# vi Multiplication.sh
[root@tecmint ~]# chmod 755 Multiplication.sh
[root@tecmint ~]# ./Multiplication.sh

「Enter the First Number: 」
11
「Enter the Second Number: 」
11
11 * 11 = 12

除法運算

復制代碼代碼如下:

#!/bin/bash
echo 「Enter the First Number: 」
read a
echo 「Enter the Second Number: 」
read b
echo "$a / $b = $(expr $a / $b)"

輸出結果:

復制代碼代碼如下:

[root@tecmint ~]# vi Division.sh
[root@tecmint ~]# chmod 755 Division.sh
[root@tecmint ~]# ./Division.sh

「Enter the First Number: 」
12
「Enter the Second Number: 」
3
12 / 3 = 4

數組
下面的這個腳本可以列印一組數字。

復制代碼代碼如下:

#!/bin/bash
echo 「Enter The Number upto which you want to Print Table: 」
read n
i=1
while [ $i -ne 10 ]
do
i=$(expr $i + 1)
table=$(expr $i \* $n)
echo $table
done

輸出結果:

復制代碼代碼如下:

[root@tecmint ~]# vi Table.sh
[root@tecmint ~]# chmod 755 Table.sh
[root@tecmint ~]# ./Table.sh

「Enter The Number upto which you want to Print Table: 」
29
58
87
116
145
174
203
232
261
290

你可以從這里下載這個例子的代碼

判斷奇偶數

復制代碼代碼如下:

#!/bin/bash
echo "Enter The Number"
read n
num=$(expr $n % 2)
if [ $num -eq 0 ]
then
echo "is a Even Number"
else
echo "is a Odd Number"
fi

輸出結果:

復制代碼代碼如下:

[root@tecmint ~]# vi EvenOdd.sh
[root@tecmint ~]# chmod 755 EvenOdd.sh
[root@tecmint ~]# ./EvenOdd.sh

Enter The Number
12
is a Even Number
1
2
3
4
5
[root@tecmint ~]# ./EvenOdd.sh

Enter The Number
11
is a Odd Number

Factorial數

復制代碼代碼如下:

#!/bin/bash
echo "Enter The Number"
read a
fact=1
while [ $a -ne 0 ]
do
fact=$(expr $fact \* $a)
a=$(expr $a - 1)
done
echo $fact

輸出結果:

復制代碼代碼如下:
[root@tecmint ~]# vi Factorial.sh
[root@tecmint ~]# chmod 755 Factorial.sh
[root@tecmint ~]# ./Factorial.sh

Enter The Number
12
479001600

你可以從這里下載這個例子的代碼

判斷Armstrong數
Armstrong數:在三位的正整數中,例如abc,有一些可能滿足(a^3)+(b^3)+(c^3)=abc,即各個位數的立方和正好是該數的本身。這些數即稱為Armstrong數。

復制代碼代碼如下:

#!/bin/bash
echo "Enter A Number"
read n
arm=0
temp=$n
while [ $n -ne 0 ]
do
r=$(expr $n % 10)
arm=$(expr $arm + $r \* $r \* $r)
n=$(expr $n / 10)
done
echo $arm
if [ $arm -eq $temp ]
then
echo "Armstrong"
else
echo "Not Armstrong"
fi

輸出結果:

復制代碼代碼如下:

[root@tecmint ~]# vi Armstrong.sh
[root@tecmint ~]# chmod 755 Armstrong.sh
[root@tecmint ~]# ./Armstrong.sh

Enter A Number
371
371
Armstrong
1
2
3
4
5
6
[root@tecmint ~]# ./Armstrong.sh

Enter A Number
123
36
Not Armstrong

判斷質數

復制代碼代碼如下:

#!/bin/bash
echo 「Enter Any Number」
read n
i=1
c=1
while [ $i -le $n ]
do
i=$(expr $i + 1)
r=$(expr $n % $i)
if [ $r -eq 0 ]
then
c=$(expr $c + 1)
fi
done
if [ $c -eq 2 ]
then
echo 「Prime」
else
echo 「Not Prime」
fi

輸出結果:

復制代碼代碼如下:

[root@tecmint ~]# vi Prime.sh
[root@tecmint ~]# chmod 755 Prime.sh
[root@tecmint ~]# ./Prime.sh

「Enter Any Number」
12

「Not Prime」

⑹ Linux下shell腳本中怎麼比較兩個數字

[
1
-gt
0
]
測試1是否大於0,-gt表示大於,-lt測試小於,-eq比較兩個數字是否相等

熱點內容
王水是用什麼配置的 發布:2024-11-28 17:43:59 瀏覽:620
編程貓簡 發布:2024-11-28 17:30:20 瀏覽:162
firefox清除dns緩存 發布:2024-11-28 17:26:59 瀏覽:939
蝸牛星際存儲怎麼樣 發布:2024-11-28 17:24:56 瀏覽:420
安卓微信加人過期了怎麼加回去 發布:2024-11-28 17:24:52 瀏覽:48
安卓微轉領袖怎麼授權 發布:2024-11-28 17:17:25 瀏覽:651
華強北二手安卓哪裡買 發布:2024-11-28 17:14:37 瀏覽:413
要聽密碼是多少 發布:2024-11-28 17:10:56 瀏覽:461
安卓和安卓怎麼傳相冊相片 發布:2024-11-28 17:06:58 瀏覽:7
網路電視密碼一般是什麼 發布:2024-11-28 17:03:18 瀏覽:32