Division: /

Division is a matematical operation, it can be used for integers and real numbers.

/

Description

par1 / par2
Used keywords: /

Input


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.
Compatible programing languages:
Basic | FreeBASIC | Visual Basic .NET | JavaScript | Pascal | Free Pascal | Object Pascal | PHP

Examples

Example

Division the possible of use:
x = 64 / 8;   // x=8
y = x / 0.5;   // y=16
z = (x * 2 / y +5);// z=1.1

Example

Even one example in what situations we can use the operation division:
i / 0xab
27 / 3
(2.5 / 2 + 1.25) + 2

Example

Other pieces of example codes:
(x / 5)
y = y/ 3.14
y = x / 0xa
50 / i
y = x / 0xa
x >= y / 5

/

Description

par1 / par2
Used keywords: /

Input


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.
Compatible programing languages:
C | Visual C++ .NET | C++ | C# | Java

Examples

C

Division the possible of use:
x = (float)64 / 8;   // x=8
y = x / 0.5;   // y=16
z = ((float)(x * 2) / y +5);// z=1.1

C

Even one example in what situations we can use the operation division:
(float)i / 0xab
(float)27 / 3
(2.5 / 2 + 1.25) + 2

C

Other pieces of example codes:
y = y/ 3.14
(float)50 / i
y = (float)x / 0xa
((float)x / 5)
x >= (float)y / 5
y = (float)x / 0xa

/

Description

par1 / par2
Used keywords: /

Input


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.
Compatible programing languages:
C | C++ | Visual C++ .NET | C# | Java | JavaScript

Examples

C

Division the possible of use:
x = (float)64 / 8;   // x=8
y = x / 0.5;   // y=16
z = ((float)(x * 2) / y +5);// z=1.1

C

Even one example in what situations we can use the operation division:
(float)i / 0xab
(float)27 / 3
(2.5 / 2 + 1.25) + 2

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