Linux常用命令——bc

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Linux常用命令——bc相关的知识,希望对你有一定的参考价值。

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的主要内容,如果未能解决你的问题,请参考以下文章

linux常用命令

Linux常用命令

linux常用基本命令

bc命令:打开Linux中的计算器

linux常用基本命令

linux Shell编程中常用的数学计算方法:expr,let,bc及其他。哪个效率更高一点?