C++ - Arithmetic operators

Are used to perform mathematical operations. the following are basic operations between the arithmetic operators:
addition
par1 + par2
Subtraction
par1 - par2
multiplication
par1 * par2
division
par1 / par2

par1 / par2
modulo
par1 % par2
integer division
par1 / par2
additive inverse
- expression

C++

Other pieces of example codes:
 y = 15 % 4
10 * 3.14
x >= (float)y / 5
(2.5 / 2 + 1.25) + 2
 x= -5
(j - 8)
Languages: en hu cz sk