Visual C++ - Integer division: /

Integer division is a mathematical operation that can be used only for whole numbers. the result of division we get without rounding simply with leave of fraction.

/

Description

par1 / par2
Used keywords: /

Input


Output

Examples

Visual C++ .NET

Integer division the possible of use:
x = 250 / 8;       // x=7
y = x / 3;         // y=2
z = (x * 2 / y +5);// z=9

Visual C++ .NET

Even one example in what situations we can use the operation integer division:
i / 0x0a
27 / 3
(25 / 2 + 1) + 2

Visual C++ .NET

Other pieces of example codes:
(15123 / 70)
(1512345 / 70)
70 / 8
 y = 1025 / 8
 y = 10250 / 8

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