Name
ARITHMETIK

Syntax
ARITHMETIK

Aufklappen Erläuterung
^ oder ** (Priorität: 2)
Potenz. Typ: Numerisch.
  Beispiel:
  a=3^2
  b=4**2
  c=a^2 + b**2 !=337


* (Priorität: 3)
Multiplikation. Typ: Numerisch.
  Beispiel:
  a=3*2
  b=4*2
  c=a*b !=48


/ (Priorität: 3)
Division. Typ: Numerisch; Ergebnistyp: real.
  Beispiel:
  a=3/2
  b=4/2
  c=a/b !=0.75


MOD oder % (Priorität: 3)
Modulo. Berechnet den ganzzahligen Rest aus einer Division mit Werten gleichen Typs. Typ: Numerisch.
Es gilt:   a MOD b = a - b * INT (a/b)
  Beispiel:
  a=3 MOD 2 !=1
  b=4 % 2 !=0


+ (Priorität: 4)
Addition. Typ Numerisch.
  Beispiel:
  a=3+2
  b=4+2
  c=a+b !=11


+ (Priorität: 4)
Verknüpfung zweier Texte. Typ string.
  Beispiel:
  text1="Hal" + "lo"
  text2="We" + "lt"
  text3=text1 + " " + text2 + "!" !="Hallo Welt!"


- (Priorität: 4)
Subtraktion. Typ Numerisch.
  Beispiel:
  a=3-2
  b=4-2
  c=a-b !=-1