How should I do integer division in Perl?

PerlInteger Division

Perl Problem Overview


What is a good way to always do integer division in Perl?

For example, I want:

real / int = int

int / real = int

int / int = int

Perl Solutions


Solution 1 - Perl

There are at least 2 reasonable answers to this question. (I originally gave only answer 2.)

  1. Use the int() function to truncate the floating-point calculation result to an integer (throwing away the decimal part), as Bryan suggested in his self-answer: #539805

  2. Use the use integer pragma to make Perl truncate both the inputs and results of calculations to integers. It's scoped to within { } blocks.

Examples:

print 3.0/2.1 . "\n";      # => 1.42857142857143
print 5.0/1.5 . "\n";      # => 3.33333333333333

print int(3.0/2.1) . "\n"; # => 1
print int(5.0/1.5) . "\n"; # => 3

{
  use integer;
  print 3.0/2.1 . "\n";    # => 1
  print 5.0/1.5 . "\n";    # => 5 (because 1.5 was truncated to 1)
}
print 3.0/2.1 . "\n";      # => 1.42857142857143 again

Solution 2 - Perl

You can cast ints in Perl:

int(5/1.5) = 3;

Solution 3 - Perl

int(x+.5) will round positive values toward the nearest integer. Rounding up is harder.

To round toward zero:

int($x)

For the solutions below, include the following statement:

use POSIX;

To round down: POSIX::floor($x)

To round up: POSIX::ceil($x)

To round away from zero: POSIX::floor($x) - int($x) + POSIX::ceil($x)

To round off to the nearest integer: POSIX::floor($x+.5)

Note that int($x+.5) fails badly for negative values. int(-2.1+.5) is int(-1.6), which is -1.

Solution 4 - Perl

you can:

use integer;

it is explained by Michael Ratanapintha or else use manually:

$a=3.7;
$b=2.1;

$c=int(int($a)/int($b));

notice, 'int' is not casting. this is function for converting number to integer form. this is because Perl 5 does not have separate integer division. exception is when you 'use integer'. Then you will lose real division.

Solution 5 - Perl

Hope it works

int(9/4) = 2.

Thanks Manojkumar

Solution 6 - Perl

Integer division $x divided by $y ...

$z = -1 & $x / $y

How does it work?

$x / $y

return the floating point division

&

perform a bit-wise AND

-1

stands for

&HFFFFFFFF

for the largest integer ... whence

$z = -1 & $x / $y

gives the integer division ...

Solution 7 - Perl

Eg 9 / 4 = 2.25

int(9) / int(4) = 2

9 / 4 - remainder / deniminator = 2

9 /4 - 9 % 4 / 4 = 2

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionBryan DennyView Question on Stackoverflow
Solution 1 - PerlMichael RatanapinthaView Answer on Stackoverflow
Solution 2 - PerlBryan DennyView Answer on Stackoverflow
Solution 3 - PerlSteve SchaeferView Answer on Stackoverflow
Solution 4 - PerlZnikView Answer on Stackoverflow
Solution 5 - PerlManoj KumarView Answer on Stackoverflow
Solution 6 - PerljohannesvalksView Answer on Stackoverflow
Solution 7 - PerlPaulView Answer on Stackoverflow