Plus: Unterschied zwischen den Versionen
Zur Navigation springen
Zur Suche springen
Spobel (Diskussion | Beiträge) (→Syntax) |
DLux (Diskussion | Beiträge) Keine Bearbeitungszusammenfassung |
||
Zeile 11: | Zeile 11: | ||
===Return Value=== | ===Return Value=== | ||
* Gibt | * Gibt ein [[Objekt]] zurück. | ||
Die Rückgabe ist abhängig von der Eingabe. Dabei wird soweit wie möglich der | |||
===Beispiele=== | ===Beispiele=== | ||
<math>3+5</math> --> returns 8 | <math>3+5</math> --> returns <math>8</math> | ||
<math>\frac{1}{2} + \frac{3}{2}</math> --> returns 2 | <math>\frac{1}{2} + \frac{3}{2}</math> --> returns <math>2</math> | ||
<math>2+a</math> --> returns <math>2+a</math> | |||
< | |||
<math>b+c</math> --> returns <math>b+c</math> | |||
<math>sin(x) + z</math> --> returns <math>sin(x) + z</math> | |||
<math>cos(0)+a</math> --> returns <math>1+a</math> | |||
===Hinweise=== | ===Hinweise=== | ||
* Mit [[equal]] ("==") lässt sich das Ergebnis anschließend vergleichen. | * Mit [[equal]] ("==") lässt sich das Ergebnis anschließend ebenfalls mit einem anderem [[Objekt]] vergleichen. | ||
[[Kategorie:Evaluatorfunktion]] | [[Kategorie:Evaluatorfunktion]] |
Version vom 8. November 2017, 14:52 Uhr
Beschreibung
Bei der Addition werden zwei Zahlen miteinander addiert.
Syntax
a + b plus(a,b)
Parameter
- a - double
- b - double
Return Value
- Gibt ein Objekt zurück.
Die Rückgabe ist abhängig von der Eingabe. Dabei wird soweit wie möglich der
Beispiele
<math>3+5</math> --> returns <math>8</math>
<math>\frac{1}{2} + \frac{3}{2}</math> --> returns <math>2</math>
<math>2+a</math> --> returns <math>2+a</math>
<math>b+c</math> --> returns <math>b+c</math>
<math>sin(x) + z</math> --> returns <math>sin(x) + z</math>
<math>cos(0)+a</math> --> returns <math>1+a</math>