CSNG: Difference between revisions
Jump to navigation
Jump to search
Navigation:
Main Page with Articles and Tutorials
Keyword Reference - Alphabetical
Keyword Reference - By usage
Report a broken link
(Created page with "CSNG converts a numerical value to the closest SINGLE-precision number. {{PageSyntax}} : {{Parameter|singleValue!}} = CSNG({{Parameter|expression}}) {{Parameters}} * {{Parameter|expression}} is any TYPE of literal or variable numerical value or mathematical calculation. {{PageDescription}} * Returns the closest SINGLE decimal point value. * Also used to define a value as SINGLE-precision up to 7 decimals. {{PageExamples}} {{CodeStart}} A...") |
No edit summary |
||
(2 intermediate revisions by the same user not shown) | |||
Line 2: | Line 2: | ||
{{PageSyntax}} | {{PageSyntax}} | ||
: {{Parameter|singleValue!}} = [[CSNG]]({{Parameter|expression}}) | : {{Parameter|singleValue!}} = [[CSNG]]({{Parameter|expression}}) | ||
{{ | {{PageParameters}} | ||
* {{Parameter|expression}} is any [[TYPE]] of literal or variable numerical value or mathematical calculation. | * {{Parameter|expression}} is any [[TYPE]] of literal or variable numerical value or mathematical calculation. | ||
Line 24: | Line 24: | ||
{{PageSeeAlso}} | |||
* [[CDBL]], [[CLNG]] | * [[CDBL]], [[CLNG]] | ||
* [[CINT]], [[INT]] | * [[CINT]], [[INT]] | ||
* [[_ROUND]] | * [[_ROUND]] | ||
{{PageNavigation}} | {{PageNavigation}} |
Latest revision as of 00:25, 29 January 2023
CSNG converts a numerical value to the closest SINGLE-precision number.
Syntax
- singleValue! = CSNG(expression)
Parameters
- expression is any TYPE of literal or variable numerical value or mathematical calculation.
Description
- Returns the closest SINGLE decimal point value.
- Also used to define a value as SINGLE-precision up to 7 decimals.
Examples
A# = 975.3421222# PRINT A#, CSNG(A#) |
975.3421222 975.3421 |
See also