CSNG

From QB64 Phoenix Edition Wiki
Revision as of 14:38, 20 April 2022 by SMcNeill (talk | contribs) (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...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

CSNG converts a numerical value to the closest SINGLE-precision number.


Syntax

singleValue! = CSNG(expression)


Template: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:



Navigation:
Main Page with Articles and Tutorials
Keyword Reference - Alphabetical
Keyword Reference - By usage
Report a broken link