INT: Difference between revisions
From Macros Wiki
Jump to navigationJump to search
No edit summary |
MikeONeill (talk | contribs) No edit summary |
||
Line 3: | Line 3: | ||
{{Command|syntax=[[Image:int.png|right|INT]]INT <n> | {{Command|syntax=[[Image:int.png|right|INT]]INT <n> | ||
|description=:Returns the integer value of a number. This is the whole part of the number, without the portion after the decimal point.<br> | |description=:Returns the integer value of a number. This is the whole part of the number, without the portion after the decimal point.<br> | ||
:To round to the nearest integer value | :To round to the nearest integer value use the NINT function. | ||
|param1=<n>|param1_desc={{n}} | |param1=<n>|param1_desc={{n}} |
Latest revision as of 23:30, 1 February 2022
Command
- Returns the integer value of a number. This is the whole part of the number, without the portion after the decimal point.
- To round to the nearest integer value use the NINT function.
Parameters
- <n>
- Anything that evaluates to a number. This can be a variable, a number, another function, or an expression which includes numbers, variables and/or functions.
- For example:
- 123
- r1
- r2 + r3
- (r1 + (abs(a1 * a2) / (b3 * 62)))
Example
- a1 = INT(r1)
- a2 = INT(r1/14.2)
- a3 = INT(1.23)