Odd()
This function returns the nearest ODD number which is - greater than the original number if the original number is positive and lesser than the original number if original number is negative
Syntax:
= Odd (Number)
Number = is the number which is required to be rounded off to nearest odd number
Example:
- = Odd (2) - result will be: 3
- = Odd (3) - result will be: 3
- = Odd (5) - result will be: 5
- = Odd (8) - result will be: 9
- = Odd (-2) - result will be: -3
- = Odd (-3) - result will be: -3
- = Odd (-5) - result will be: -5
- = Odd (-8) - result will be: -9
0 comments:
Post a Comment