Clear Filters
Clear Filters

2520 is the smallest number that can be divided by each of the numbers from 1 to 10 without any remainder. Write a function called smallest_multiple that returns a uint64, the smallest positive number that is evenly divisible by all of the numbers fr

2 views (last 30 days)
function a=smallest_multiple(n)
a=1;
x=mod(a,(1:n));
while sum(x)~=0
a=a+1;
x=mod(a,(1:n));
if a>intmax('uint64')
a=0;
else
continue
end
end
a=uint64(a);

Answers (0)

Categories

Find more on MATLAB in Help Center and File Exchange

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!