1
1
Fork 0
mirror of https://github.com/QB64-Phoenix-Edition/QB64pe.git synced 2024-07-03 12:21:20 +00:00
QB64-PE/internal/help/ABS_111.txt
Roland Heyder aeb9c0668b Updates help files for use with new Wiki parser (2nd try)
Note: Many files were removed (not yet existing/empty pages). The parser will try to download them on demand and will auto-generate text for missing pages (eg. most _gl pages).
2022-05-21 00:18:31 +02:00

41 lines
1,010 B
Plaintext

{{QBDLDATE:05-20-2022}}
{{QBDLTIME:23:11:40}}
The [[ABS]] function returns the unsigned numerical value of a variable or literal value.
{{PageSyntax}}
:{{Parameter|positive}} = [[ABS]]({{Parameter|numericalValue}})
{{PageDescription}}
* [[ABS]] always returns positive numerical values. The value can be any numerical type.
* Often used to keep a value positive when necessary in a program.
* Use [[SGN]] to determine a value's sign when necessary.
* '''QB64''' allows programs to return only positive [[_UNSIGNED]] variable values using a [[DIM]] or [[_DEFINE]] statement.
{{PageExamples}}
''Example:'' Finding the absolute value of positive and negative numerical values.
{{CodeStart}}
a = -6
b = -7
c = 8
{{Cl|IF...THEN|IF}} a < 0 {{Cl|THEN}} a = {{Cl|ABS}}(a)
b = {{Cl|ABS}}(b)
c = {{Cl|ABS}}(c)
{{Cl|PRINT}} a, b, c
{{CodeEnd}}
{{OutputStart}} 6 7 8
{{OutputEnd}}
{{PageSeeAlso}}
* [[SGN]], [[DIM]]
* [[_UNSIGNED]]
* [[_DEFINE]]
* [[Mathematical Operations]]
{{PageNavigation}}