How can I force division to be floating point? Division keeps rounding down to 0?
I have two integer values a
and b
, but I need their ratio in floating point. I know that a < b
and I want to calculate a / b
, so if I use integer division I’ll always get 0 with a remainder of a
.