如何在 Erlang 中使用科学记数法?
Posted
技术标签:
【中文标题】如何在 Erlang 中使用科学记数法?【英文标题】:How can I use scientific notation in Erlang? 【发布时间】:2022-01-05 23:39:05 【问题描述】:这是我尝试在 Erlang 中简洁地写出 100 万这个数字的方法:
$ erl
1> 1e6.
* 3: syntax error before: e6
有没有现成的方法来做,比
1> math:pow(10,6).
1.0e6
?
【问题讨论】:
【参考方案1】:math:pow
的输出正盯着我看:
Eshell V12.1.2 (abort with ^G)
1> 2.3e-3.
0.0023
【讨论】:
以上是关于如何在 Erlang 中使用科学记数法?的主要内容,如果未能解决你的问题,请参考以下文章