+0  
 
+1
333
1
avatar+5 

A number (x) that, when multiplied by 8,800, can also be divided by 10,000 and give a whole number, and vice versa. (Can not be more than 150)

 Feb 2, 2021
edited by aChickensz  Feb 2, 2021
 #1
avatar
+1

Using the python script
list=[]
for i in range(0,151):
    x=i*8800
    if x % 10000 == 0:
        list.append(i)
print(list)

 

The answers are 0, 25, 50, 75, 100, 125, and 150

 Jun 18, 2022

1 Online Users