Home > Backend Development > PHP Tutorial > PHP中计算百分比时怎么保证各部和为1

PHP中计算百分比时怎么保证各部和为1

WBOY
Release: 2016-06-13 12:45:44
Original
1082 people have browsed it

PHP中计算百分比时如何保证各部和为1?

本帖最后由 Jasmine_xiaocao 于 2013-05-18 09:51:53 编辑
<br />
$total = $a+$b+$c+$d;<br />
<br />
$percentA = ceil($a*100.0/$total);<br />
$percentB = ceil($b*100.0/$total);<br />
$percentC = ceil($c*100.0/$total);<br />
$percentD = ceil($d*100.0/$total);<br />
<br />
Copy after login


上面的代码似乎无法确保最后的总和是100%

<br />
$percentD = 100-$percentA-$percentB-$percentC;<br />
Copy after login

除了这种方法,有其他方法吗?

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template