我做了一个计数器,我正在使用 PHP,几乎一切都很好,但我发现了一个小错误。
我在柜台上的前两步进展顺利,即$bid
和$stax
。
我的最后一个结果$pay
应该是:8138 + 814 + 448 = 9400
但它给了我$9,399
我的输出是:
Value $8,138 bid $814 tax $448 You Pay $9,399
Value $8,952 bid $895 tax $492 You Pay $10,339
Value $9,847 bid $985 tax $542 You Pay $11,373
这是我的php
<?php
$i = 0;
$v = 8138; // value : 8138
do {
$i++;
$bid = $v / 10; // output : $814
$ftax = $v + $bid;
$stax = $ftax / 20; // output : tax $448
$pay = $v + $bid + $stax; // 8138 + 814 + 448 = 9400
echo "Value $" . number_format($v) . " bid $" . number_format($bid) . " tax $" . number_format($stax) . " You Pay $" . number_format($pay) . "<br />";
$v = $v * 1.1;
} while ($i <= 2);
?>
提前致谢 :)