How could find multiples of a given number N ?
140 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
The input is taken from the user.
0 commentaires
Réponse acceptée
Plus de réponses (2)
ilker melik
le 30 Juil 2020
Modifié(e) : ilker melik
le 30 Juil 2020
function c = finding_multipliers(y) % y is the number that you are looking for.
count = 0;
n = 1;
while n < y
if mod(y,n) == 0
count = count + 1;
c(count,1) = n;
end
n = n + 1;
end
This can be a helpful function.
RINU BENNY
le 26 Avr 2022
n=input('enter the number whose multiple is needed'); m=input('enter the range of multiples needed'); for i=0:m if mod(i,n)==0 disp(i); end end
0 commentaires
Voir également
Catégories
En savoir plus sur Multidimensional Arrays 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!