Check ?

If f(x) = int(x), find the given functional value.


35. f(-14.321)

= 14

3 answers

nope

though it does depend on how int is defined

if it just truncates the fraction off, you get -14

if it is defined as the greatest integer less than or equal, you get -15.

what you have is int( |-14.321| )
So it's -14?
I'd expect so.