PHP <-> Free Pascal | Modulo

PHP

%

Description

par1 % par2
Used keywords: %

Input


Output

Examples

PHP

Modulo the possible of use:
$x = 90 % 8;    // x = 2
$y = 15 % 4;    // y = 3
$z = ($x % $y) %5;// z = 2

PHP

Even one example in what situations we can use the operation modulo:
$i % 4
121 % 40
(0xff % 50 % 10) % 2
.
Free Pascal

mod

Description

par1 mod par2
Used keywords: mod

Input


Output

Examples

Free Pascal

Modulo the possible of use:
x := 90 mod 8;    // x = 2
y := 15 mod 4;    // y = 3
z := (x mod y) mod 5;// z = 2

Free Pascal

Even one example in what situations we can use the operation modulo:
i mod 4
121 mod 40
($ff mod 50 mod 10) mod 2

You can find it in the following collections: arithmetic operators
Languages: en hu cz sk