Integer Division โ#
If you divide an integer by an integer, the result is just the quotient.
This means if you divide something like 5 / 2
, you would not get a fraction like 2.5
and instead get 2
.
Tasks ๐ฏ#
What does the experssion 3 / 2
evaluate to?
Solution โ
3 / 2 = 1
due to integer division.