CSNG: Difference between revisions

From QB64 Phoenix Edition Wiki
Jump to navigation Jump to search
No edit summary
No edit summary
Line 6: Line 6:




{{Parameters}}
{{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.



Revision as of 01:47, 24 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:



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