Skip to main content
Skip table of contents

Mathematische Operatoren


Mathematische Operatoren

Es stehen folgende mathematische Operatoren zur Verfügung:

Operator

Bedeutung

Beispiel

Ergebnis

=

Zuweisung

A = 10

10

+

Addition

A = 1 + 2

3

-

Subtraktion

A = 5 - 2

3

*

Multiplikation

A = 3 * 5

15

/

Division

A = 8/2

4

**

Exponent

A = 3**2

9

%

Modulo

A = 17 % 5

2

()

Klammerung

A = 2*(1+2)

6


Beim Aufbau von Formeln gelten die mathematischen Prioritäten (Exponentiation vor Multiplikation/Division vor Addition/Subtraktion):

2 * 3 + 4 = (2 * 3) + 4

3 * 4 ** 2 = 3 * (4 ** 2)

Siehe dazu auch den Aufbau von Ausdrücken Aufbau von Ausdrücken

JavaScript errors detected

Please note, these errors can depend on your browser setup.

If this problem persists, please contact our support.