1
1
Fork 0
mirror of https://github.com/QB64-Phoenix-Edition/QB64pe.git synced 2024-07-26 17:55:52 +00:00
QB64-PE/internal/help/CDBL.txt
SMcNeill 6e01fc8dce Altered string compare routines (<,<=,>,>=) so they don't give false results with CHR$(0).
Added new _STRCMP and _STRICMP commands for quick string comparisons.
Cleaned up QB64 to finish removing the QUI (quick user insert) code and folders.
Altered UCASE and LCASE routines to be faster in some situations for us.
2014-09-22 08:19:03 -04:00

37 lines
750 B
Plaintext

{{KW|CDBL}} converts a value to the closest {{KW|DOUBLE}}-precision value.
{{PageSyntax}}
:{{KW|CDBL}}({{Parameter|n}})
* Rounds to the closest {{KW|DOUBLE}}-precision decimal point value.
* Also can be used to define a value as {{KW|DOUBLE}}-precision.
''Example:''
{{CodeStart}}
A = 454.67
{{Cl|PRINT}} A; {{Cl|CDBL}}(A)
{{CodeEnd}}
{{OutputStart}}
454.67 454.6700134277344
{{OutputEnd}}
:Prints a double-precision version of the single-precision value stored in the variable named A. The last 11 numbers in the double-precision number change the value in this example, since A was previously defined to only two-decimal place accuracy.
{{PageSeeAlso}}
*{{KW|CINT}}, {{KW|CLNG}}, {{KW|CSNG}}, {{KW|_ROUND}}
{{PageNavigation}}