I need to perform division between integers in Java, and the result should be a float.
Could I just use / symbol for it? As in:
/
int int
Cast one of the integers to float to ensure a floating point division:
float result = integer1 / (float) integer2