When entering constant values, enter them as shown in the following.
Real constant |
Use this when associating values with Real variables. Input Format 0r (zero and lowercase "r"). For example, 0r0.11 |
Float constant |
Use this when associating values with Float variables. Input Format 0f (zero and lowercase "f"). For example, 0f0.11 |
Constant HEX Input |
Use this when entering hexadecimal values in an integer variable. Input Format 0x (zero and lowercase "x"). For example, 0xFE |
When fractional values exceed 4 digits, the following notation is used.
For example:
0f0.00001 -> 0f1e-05
0f0.000001 -> 0f1e-06