find the largest 7 digit number which is exactly divisivle by 400
Answers
Answered by
2
Answer:
largest 7 digit is 10,00,000
FLW ME...HOPE IT'S HELP YOU..MARK ME AS BRAINLIST...
Answered by
1
Answer:
rem Expressions
rem $ string
rem % integer
rem real
rem External pgms to add
2 rem given equation to solve
rem 99 can be divisible by 9 and 11,so do mods 9 and 11
for n = 1000000 to 9999999
y = mod(n,9)
if y<>0 then 10
y = mod(n,11)
if y<>0 then 10
print n
10 next n
print "done now!"
Attachments:
Similar questions