### Description Result of the following code correct in all php versions except PHP 8 and up ```php <?php $price = 1390000; $amount = 55; var_dump( $price - ( $price * ($amount / 100)) ); ``` Result in PHP version < 8.0.0: ``` float(625500) ``` Result in PHP version >= 8.0.0: ``` float(625499.9999999999) ``` ### PHP Version PHP 8.*.* ### Operating System _No response_