Object Pascal - Division: /
Division is a matematical operation, it can be used for integers and real numbers./
Description
par1 / par2
Input
- par1 - Any number
- par2 - Any number
Output
- Result - Real numbers Result of the division is always a real number.
Note: If we want a integer as a result, so let's use the integer division operation or by using some rounding function we can convert the result to an integer.
Examples
Object Pascal
Division the possible of use:x := 64 / 8; // x=8
y := x / 0.5; // y=16
z := (x * 2 / y +5);// z=1.1
Object Pascal
Even one example in what situations we can use the operation division:i / $ab
27 / 3
(2.5 / 2 + 1.25) + 2
Object Pascal
Other pieces of example codes:y := x / $a
x >= y / 5
(x / 5)
y := x / $a
y := y/ 3.14
50 / i
You can find it in the following collections: arithmetic operators
Division in another programming language:
Differences to: