Need to understand this error and resolve it:
<?php
$a = 204.95 + 204.95 + 204.95;
$b = 614.85;
echo $a ."->" .$b ."->" . ($b - $a)."\n";
$a = 204.93 + 204.93 + 204.93;
$b = 614.79;
echo $a ."->" .$b ."->" . ($b - $a)."\n";
?>
Getting output:
614.85->614.85->1.1368683772162E-13
614.79->614.79->0
Expected Result is:
614.85->614.85->0
614.79->614.79->0