Object Pascal - Arithmetic operators
Are used to perform mathematical operations. the following are basic operations between the arithmetic operators:Object Pascal
Other pieces of example codes:y:= 15 mod 4;
y:= 1025 div 8;
2.5 / 2 + 1.25
z := (x+y+30)+3;
(x * y)
(j - 8)
Arithmetic operators in another programming language: