Operators (cont.)
nThe “/” denotes division when applied to two floating point operands, but integer quotient when applied to two integer operands.
n
n2.0/4.0 -> 0.5
n2/4 -> 0
n5.0/4.0 -> 1.25
n5/4 -> 1
n