Plus: Unterschied zwischen den Versionen
Zur Navigation springen
Zur Suche springen
DLux (Diskussion | Beiträge) Keine Bearbeitungszusammenfassung |
DLux (Diskussion | Beiträge) Keine Bearbeitungszusammenfassung |
||
Zeile 12: | Zeile 12: | ||
===Return Value=== | ===Return Value=== | ||
* Gibt ein [[Objekt]] zurück. | * Gibt ein [[Objekt]] zurück. | ||
Die Rückgabe ist abhängig von der Eingabe. Dabei wird soweit wie möglich | Die Rückgabe ist abhängig von der Eingabe. Dabei wird soweit wie möglich die Eingabe ausgerechnet. | ||
===Beispiele=== | ===Beispiele=== | ||
Zeile 25: | Zeile 25: | ||
<math>sin(x) + z</math> --> returns <math>sin(x) + z</math> | <math>sin(x) + z</math> --> returns <math>sin(x) + z</math> | ||
<math>cos(0)+a</math> --> returns <math>1+a</math> | <math>cos(0)+a</math> --> returns <math>1+a</math> | ||
Version vom 13. November 2017, 10:59 Uhr
Beschreibung
Bei der Addition werden zwei Zahlen miteinander addiert.
Syntax
a + b plus(a,b)
Parameter
Return Value
- Gibt ein Objekt zurück.
Die Rückgabe ist abhängig von der Eingabe. Dabei wird soweit wie möglich die Eingabe ausgerechnet.
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>