Effacer les filtres
Effacer les filtres

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 vues (au cours des 30 derniers jours)
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);

Réponses (0)

Catégories

En savoir plus sur MATLAB dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by