contestada

If the divisor is 40 what is the least three digit dividend that would give a remainder of 4

Respuesta :

124, i worked this out in python using this code:
for i in range(100,999):
    if (i%40==4):
        print (i)
        break
    else:
        pass