1
1
Fork 0
mirror of https://github.com/QB64Official/qb64.git synced 2024-07-03 10:01:21 +00:00
qb64/internal/help/CLNG.txt

37 lines
833 B
Plaintext
Raw Normal View History

2017-10-10 14:55:21 +00:00
The [[CLNG]] function rounds decimal point numbers up or down to the nearest [[LONG]] integer value.
{{PageSyntax}}
2017-10-10 14:55:21 +00:00
: {{Parameter|value&}} = [[CLNG]]({{Parameter|expression}})
2016-03-18 11:36:04 +00:00
2021-02-18 17:11:22 +00:00
{{PageParameters}}
2017-10-10 14:55:21 +00:00
* {{Parameter|expression}} is any [[TYPE]] of literal or variable numerical value or mathematical calculation.
{{PageDescription}}
* Used when integer values exceed 32767 or are less than -32768.
2017-10-10 14:55:21 +00:00
* Values greater than .5 are rounded up; .5 or lower are rounded down.
* CLNG can return normal [[INTEGER]] values under 32768 too.
* Use it when a number could exceed normal [[INTEGER]] number limits.
{{PageExamples}}
{{CodeStart}}
a& = {{Cl|CLNG}}(2345678.51)
{{Cl|PRINT}}
{{CodeEnd}}
{{OutputStart}}
2345679
{{OutputEnd}}
{{PageSeeAlso}}
2016-03-18 11:36:04 +00:00
* [[CINT]], [[INT]]
* [[CSNG]], [[CDBL]]
* [[_ROUND]]
2019-04-15 01:15:33 +00:00
{{PageNavigation}}