Integer: Difference between revisions
>Flurite No edit summary |
>JulienDethurens Considering it is not agreed universally what exactly whole numbers, natural numbers, and all the rest are, let's just say it in simpler terms. |
||
Line 3: | Line 3: | ||
{{CatUp|Data Types}} | {{CatUp|Data Types}} | ||
An integer is classified as | An integer is classified as any positive or negative number, including zero. | ||
{{Example|These are all Integers | {{Example|These are all Integers | ||
5, | 5, |
Revision as of 05:00, 9 February 2012
An integer is classified as any positive or negative number, including zero.
5, 45213, 753, -4256, -842,
5.3 (No decimal places in Integers), 636.24
Integers can be used where you need to have negative numbers, but not a lot of decimal accuracy. Your numbers can't get very accurate (there is no "between" 1 and 2) but they can go negative.
In IntValues, the lowest value it can hold is -231 or -2,147,483,648. The highest value it can hold is 231-1, or 2,147,483,647. For the computer geeks out there, this is a 32-bit (or long) signed integer value.
In Lua scripts, the variables that are just numbers are actually double precision floating point (or just 'double') numbers. For more information about this data type, look at the Number data type page.