- iOS/Objective-C 元类和类别
- objective-c - -1001 错误,当 NSURLSession 通过 httpproxy 和/etc/hosts
- java - 使用网络类获取 url 地址
- ios - 推送通知中不播放声音
我正在尝试为此编写一个函数:从小数位价格到 32 位价格的转换:喜欢这个计算器:http://www.iotafinance.com/en/Fractional-Decimal-Price-Conversion-Calculator.html
我用 PHP 编写了一个函数,但这并不适用于所有情况:例子 :对于 4.078 十进制,我应该在 32 位中有 4.024但我有 4.025
有优雅的功能吗?我认为我的解决方案很糟糕,并不适用于所有情况。
非常感谢
PHP 代码:
<?php
function convert32eme($dec) {
// Init
$pos2 = "";
$pos3 = "";
$pre = "";
$i = 0;
$aNumberDecimal = explode(".", $dec);
$iEntier = $aNumberDecimal[0];
$fDecimal = @$aNumberDecimal[1];
// Two first décimales in 32eme
if(isset($fDecimal)) {
$pos2 = '0.'.(int)$fDecimal;
while(substr($fDecimal, $i++, 1) == 0) {
$pre .= "0";
}
$pos2 = $pre.$pos2*32; // Multiply 32
$aNumberDecimal2 = explode(".", $pos2);
$pos2 = $aNumberDecimal2[0]; // 2 first decimal
// Third decimales in 8eme of 32eme
$iEntier2 = $aNumberDecimal2[0];
$fDecimal2 = @$aNumberDecimal2[1];
if(isset($fDecimal2)) {
$c = '0.'.(int)$fDecimal2;
$pos3 = round($c*8); // Multiply 8
echo '<br/>Pos3 : '.$pos3;
}
}
// Final
$fDecimalFinal = ($pos2).($pos3);
echo '<br/>'.$fDecimalFinal;
$aFoo = explode('.', round("0.".$fDecimalFinal, 3));
$fDecimalFinal = @$aFoo[1];
if(!$fDecimalFinal) {
$fDecimalFinal = "00";
}
return $iEntier.'.'.$fDecimalFinal;
}
function display($dec, $correc, $result) {
echo '----------------<br/>'.$dec.' - '.$correc;
if($result == $correc) {
echo ' <span style="color: green">OK</span>';
} else
{
echo ' <span style="color: red">KO</span>';
}
echo '<br/>';
}
function useless($dec, $correc) {
$result = convert32eme($dec);
display($dec, $correc, $result);
return $result;
}
echo '-> ' . useless(100.515625, 100.164).'<br/>'; // OK
echo '-> ' . useless(100.9609375, 100.306).'<br/>'; // OK
echo '-> ' . useless(108.0859, 108.027).'<br/>'; // OK
echo '-> ' . useless(100.03125, 100.01).'<br/>'; // OK
echo '-> ' . useless(100.5, 100.16).'<br/>'; // OK
echo '-> ' . useless(100.00, 100.00).'<br/>'; // OK
echo '-> ' . useless(1000.096, 1000.031).'<br/>'; // OK
echo '-> ' . useless(94949.4564879, 94949.145).'<br/>'; // OK
echo '-> ' . useless(0.454, 0.144).'<br/>'; // OK
echo '-> ' . useless(4.0035, 4.001).'<br/>'; // OK
echo '-> ' . useless(4.0078, 4.002).'<br/>'; // OK
echo '-> ' . useless(4.078, 4.024).'<br/>'; // dont't work
echo '-> ' . useless(4.071, 4.022).'<br/>'; // dont't work
最佳答案
您的转换函数看起来非常复杂,因为您错误地选择了处理字符串而不是处理数字。如果您使用数字,则不必担心点后的零个数或此类问题。您只需计算并四舍五入:
function convert32($num) {
$intpart = intval($num);
return round($intpart + ($num - $intpart)/3.125, 3);
}
与第 8 部分:
function convert32($num) {
$intpart = intval($num);
$dec32 = ($num - $intpart)*.32;
$dec8 = ($dec32 - floor($dec32*100)/100)*.8;
$dec32 = floor($dec32*100)/100;
return round($intpart + $dec32 + $dec8, 3);
}
在法语中 trente-deuxième 缩写为 32e(32e 可能的话),而不是 32eme。
关于php - 小数点价格到 32 位价格,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44750349/
我试图找到一种方法来限制 Haskell,以便返回只有 2 个十进制名称的数字(例如 1.24) 我的代码是: sumSquares = sum . map (^ 2) 在 Haskell 中如何做到
我在向输入框添加停靠点验证时遇到一些问题。仅允许数字的限制(第二个条件)有效,但第一个条件也可能不存在。输入框中仍然没有出现句号和小数点。 function isNumberKey(evt) {
如何处理R中的p值? 我期望非常低的 p 值,例如: 1.00E-80 我需要-log10 -log10(1.00E-80) -log10(0) 是 Inf,但 Inf 也有四舍五入的感觉。 但似乎在
我的数据库中有一个包含货币字段的表。我已经为该货币字段创建了实体并创建了 decimal 属性。当该字段的值显示在我的 MVC3 View 上时,它在小数点后有四个零 0000,如下所示:5489.0
label.text = [NSString stringWithFormat:@"%.2f",final]; 上面的语句显示变量“final”中可用的浮点值,小数点后两位。 我想显示小数位数,具体取
有没有办法在 Qt 5 中绘制带有小数点大小的文本。我正在尝试使用 QFont::setPointSizeF() 但它似乎在我尝试过的任何平台(mac/linux/windows)上都不起作用,并且点
我有一个关于如何将基数为 10 的数字转换为 IEEE 754 浮点表示的示例 Number: 45.25 (base 10) = 101101.01 (base 2) Sign: 0 Normali
我有一个包含以下值的 CSV 文件: 3271.96;274;272;1;1;0;1;0.071690;0;0;0;0;0;0;1.753130;1.75;0;1.75; 但是当我用 Excel 打开
有人可以对 here 中的这些特殊字符示例给出更好的解释吗? ?或者提供一些更清楚的例子? (x) The '(foo)' and '(bar)' in the pattern /(foo) (bar
我编写了 change() 来帮助我将字符串转换为 double。 例如:如果字符串是“5.5”,我希望数字是5.5。如果字符串是“0.0”,我希望数字是0。另一个例子:“50”到50。 现在的问题是
我正在尝试确定 python float 与零进行比较时的精确度。请注意以下几点: 1e-323 == 0 > False 1e-324 == 0 > True 我认为阈值是 324 个小数点,至少对
我想使用 .ftr 文件来快速分析数百个表。不幸的是,我在十进制和千位分隔符方面遇到了一些问题,类似于 that post ,只是 read_feather 不允许 decimal=',', thou
在 SQL Server 2008 中,我正在运行一个报告,我需要在其中划分两列(称为 Completes 和 Prescreens,整数),然后转到 Excel并得到 Prescreens 除以 C
我有一个 NSString,我想将其转换为 NSDecimalNumber。该字符串是从服务器接收的,并且始终使用 en_US 语言环境进行格式化,例如 XXX.YYY 而不是 XXX,YYY。我想创
我是一名优秀的程序员,十分优秀!