<?php $a = 2.5; $b = 2.5; print (int) $a * (int) $b; // 4 print PHP_EOL; print (int) $a ** (int) $b; // 6 ?>
You have javascript disabled. You will not be able to edit any code.