1
1
Fork 0
mirror of https://github.com/QB64Official/qb64.git synced 2024-07-07 20:20:25 +00:00
qb64/internal/help/CSNG.md

624 B

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

Syntax

singleValue! = CSNG(expression)

Parameter(s)

  • 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.

Example(s)


 A# = 975.3421222#
 PRINT A#, CSNG(A#)


975.3421222      975.3421

See Also