143k views
1 vote
If the divisor is 40 what is the least three digit dividend that would give a remainder of 4

User PhamMinh
by
8.0k points

1 Answer

3 votes
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

User Tbl
by
7.5k points