![]() |
#7
|
|||
|
|||
In most programming languages, non-fractional numbers are referred to as integers and fractional numbers are referred to as floats or floating point values. For example the following are integers:
Code:
1 2 3 4 Code:
1.0 2.1 3.89 4.43509876 |
|
|