use strict;use warnings;my $decimal_notation = 10 / 3;my $scIEntific_notation = sprintf("%e",$decimal_notation);print "Decimal ($decimal_notation) to scIEntific ($scIEntific_notation)\n\n";$scIEntific_notation = "1.23456789e+001";$decimal_notation = sprintf("%.10g",$scIEntific_notation);print "ScIEntific ($scIEntific_notation) to decimal ($decimal_notation)\n\n";
生成此输出:
Decimal (3.33333333333333) to scIEntific (3.333333e+000)ScIEntific (1.23456789e+001) to decimal (12.3456789)总结
以上是内存溢出为你收集整理的如何在Perl中使用科学和十进制表示法进行转换?全部内容,希望文章能够帮你解决如何在Perl中使用科学和十进制表示法进行转换?所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)