Zahlendarstellung
Im Angabetext und bei der Zieleinheit einer Lösung kann die Zahlendarstellung durch ein Zahlenformat durch einen Beistrich getrennt angegeben werden.
z.B:
{x,a2} {y,4}
Zahlenformate
Für die Zahlendarstellung sind folgende Zahlenformate definiert:
Format | Bedeutung | Beispiel | Wert | Ausgabe |
ohne Angabe wird die Zahl ab 10^5 bzw. 10^-5 als Gleitkommazahl mit 14 gültigen Ziffern dargestellt | {x} | 12345.34 123456.43 |
12345.34 1.2345643e5 |
|
,{ziffern} | maximale Anzahl gültiger Ziffern | {x,3} | 1451.34 | 1450 |
,a{ziffern} | absolute Maximal-Anzahl von Kommastellen | {x,a1} {x,a3} |
1451.34 | 1451.3 1451.34 |
,A{ziffern} | absolute Anzahl von Kommastellen, genau | {x,A1} {x,A3} |
1451.34 | 1451.3 1451.340 |
,f{ziffern} | Gleitkommazahl mit einer maximalen Anzahl gültiger Ziffern | {x,f3} {x,f8} |
1451.34 | 1.45e3 1.45134e3 |
,F{ziffern} | Gleitkommazahl mit einer fixen Anzahl Ziffern | {x,F3} {x,F8} |
1451.34 | 1.45e3 1.4513400e3 |