MartinGeorgiev

Rounding Numbers

Jun 1st, 2022 (edited)
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.16 KB | None | 0 0
  1. <?php
  2. foreach (explode(' ', readline()) as $value) {
  3.     echo number_format($value, 2, '.', '') . " => " . round(var_export(round($value),true)) . PHP_EOL;
  4. }
Add Comment
Please, Sign In to add comment