bc计算器是linux自带的计算器,方便好用。
OPTIONS
-h, --help
Print the usage and exit.
-i, --interactive
Force interactive mode.
-l, --mathlib(常用,这个进入之后会有一些常用的数学函数可以用,三角函数、log、e等等)
Define the standard math library.
-w, --warn
Give warnings for extensions to POSIX bc.
-s, --standard
Process exactly the POSIX bc language.
-q, --quiet(这个进入之后,没有那写欢迎信息)
Do not print the normal GNU bc welcome.
-v, --version
Print the version number and copyright and quit.
1、bc
可以进行的运算包括:
+ - * / % ^
加 减 乘 除 求余(模) 次方
注意:在进行浮点运算的时候,或者结果有浮点数的时候,要先进行小数点设置scale=2表示取两位小数点
2、bc -l
这样的方式进行计算器的时候,可以用里面的很多的函数库,
例如:
l(x):以e为底x的对数
e(x):e的x次方
l(2.71828)
.99999932734728200315
e(1)
2.71828182845904523536
e(2)
7.38905609893065022723
3、通过管道命令使用bc计算器
3.1用法1
echo "2*3" | bc
6
3.2用法2
echo "2/3"|bc
0
echo "scale=2;2/3"|bc
.66
3.3用法3(进制转换)
如果obase不指定的话,默认转化为10进制。
echo "obase=2;ibase=10;3"|bc #10进制转化为2进制
11
echo "obase=10;ibase=16;F"|bc #注意16进制的字母一定要大写
注:obase选项放在ibase选项之前,顺序不可以颠倒。
4、bc执行文件
例如:test.bc文件中是运算的语句
cat test.bc #输出以下内容
scale=2
1+2
3*5
4/3
5%2
2^4
cat test.bc | bc 就可以执行以上语句
或者 bc test.bc
执行结果:
3
15
1.33
0
16