ID : 3543
Double Precision Real Number Type
Double precision real number type data are of 15-digit significant figure accuracy within the range between -1.7976931348623157E+308 and 1.7976931348623157E+308.
Figures below the significant figure accuracy are rounded off. (Rounding to the nearest even number)
Assignment of Immediate Data by Program Description
Immediate data expression can be described on a program as follows.
- 1234.567899999
- 1.234567899999E+3
Global Variable
Global variable of double precision real number type is D type.
Local Variable
Local variable declaration of double precision real number type is declared by "Double."
Dim AAA As Double
ID : 3543