RosettaCodeData/Task/Arithmetic-Integer/PHP/arithmetic-integer.php

14 lines
393 B
PHP
Raw Permalink Normal View History

2013-04-10 15:42:53 -07:00
<?php
$a = fgets(STDIN);
$b = fgets(STDIN);
echo
"sum: ", $a + $b, "\n",
"difference: ", $a - $b, "\n",
"product: ", $a * $b, "\n",
"truncating quotient: ", (int)($a / $b), "\n",
"flooring quotient: ", floor($a / $b), "\n",
2016-12-05 22:15:40 +01:00
"remainder: ", $a % $b, "\n",
"power: ", $a ** $b, "\n"; // PHP 5.6+ only
2013-04-10 15:42:53 -07:00
?>