::Online Microsoft Office,Web ,Graphic and many more Tutorials
| Mathematical Function |
Abs function returns the absolute value of a number.
|
| |
syntax: Abs ( number ) |
| For example: |
| Abs (-210.67) |
would return 210.67 |
| Abs (-2.9) |
would return 2.9 |
| Abs (-3) |
would return 3 |
|
| INT |
| Int function returns the integer portion of a number. |
| |
syntax: Int ( expression ) |
| For example: |
| |
| Int (210.67) |
would return 210 |
| Int (2.98) |
would return 2 |
| Int (-2.98) |
would return -3 |
|
|
|
|
|