shell脚本之使用bc工具实现数值转换(浮点转二进制)

Posted 旅行者3468号

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了shell脚本之使用bc工具实现数值转换(浮点转二进制)相关的知识,希望对你有一定的参考价值。

#! /bin/bash
echo -n input float:
read num
echo power of the operation:
echo $num^2 |bc
echo converted to binary
echo "obase=2;$num" |bc

  

[[email protected] Desktop]# ./zhuanhuan.sh 
input float:3.1415926
power of the operation:
9.8696040
converted to binary
11.001001000011111101101001

  

以上是关于shell脚本之使用bc工具实现数值转换(浮点转二进制)的主要内容,如果未能解决你的问题,请参考以下文章

shell脚本基础

shell脚本中的浮点数计算

Shell 脚本浮点运算

shell编程之元字符

shell数值运算

Shell脚本笔记shell中的数学计算