需要获得乘数,将一美分的一小部分变为一整美分

发布于 2024-11-27 03:12:10 字数 333 浏览 0 评论 0原文

我希望能够在 php 应用程序中指定百分之一的分数(最大值为 100)。我需要计算出需要多少次迭代才能达到偶数整分。我继承了一个据说可以执行此操作的应用程序,但它根本不起作用。有人可以指出我的方向吗?如果这太简单了,我深表歉意。我只是一片空白。在我们的应用程序中,它做了这样的事情:

$integerPayout  = (int)floor($payout * 10000);
$count     = 1;
$modAmount = 100; 
while(($integerPayout * $count) % $modAmount != 0)
$count += 1;
echo $count;

I want to be able to specify a fraction of a cent (100th max) in a php application. I need to figure out how many iterations it would take to reach an even whole cent. I inherited an application that was supposedly doing this, but it's not working at all. Is there any direction someone can point me in? I apologize if this is beyond simple. I am just blanking out. In our app, it was doing something like this:

$integerPayout  = (int)floor($payout * 10000);
$count     = 1;
$modAmount = 100; 
while(($integerPayout * $count) % $modAmount != 0)
$count += 1;
echo $count;

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

许一世地老天荒 2024-12-04 03:12:10

lcm(100 , (int)($payout * 100)) / (int)($payout * 100)

lcm(100, (int)($payout * 100)) / (int)($payout * 100)

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文