Java <-> FreeBASIC | Integer division

Java

/

Description

par1 / par2
Used keywords: /

Input


Output

Examples

Java

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

Java

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

\

Description

par1 \ par2

Input


Output

Examples

FreeBASIC

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

FreeBASIC

Even one example in what situations we can use the operation integer division:
i \ &H0a
27 \ 3
(25 \ 2 + 1) + 2

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