1. 程式人生 > >Linux常用命令——bc

Linux常用命令——bc

ans 保留小數 元素 integer 附加 -i 乘法 計算 發送

bc 任意精度的計算器語言

語法格式:bc【option】 bc [選項]
註意:bc 命令及後面的選項中,每個元素之間都要至少要有一個空格

選項說明:

參數選項 解釋說明
-l 定義標準數學庫,如:正切函數
-c 僅通過編譯。 bc命令的輸出被發送到標準輸出
-i 強制交互模式

案例一:
bc 運算符

加法:+
減法:-
乘法:*
除法:/
指數:^
余數:%
技術分享圖片

案例二:
保留小數與退出
技術分享圖片

案例三:
文本行計算圓周率保留100位小數
技術分享圖片
附加:函數相關內容

MATH LIBRARY
The math library defines the following functions:

   s (x)  The sine of x, x is in radians.
   c (x)  The cosine of x, x is in radians.
   a (x)  The arctangent of x, arctangent returns radians.
   l (x)  The natural logarithm of x.
   e (x)  The exponential function of raising e to the value x.
   j (n,x)The Bessel function of integer order n of x.

案例四:
計算文件中的式子並返回結果
技術分享圖片

Linux常用命令——bc