Hi everyone, Can you help me
7 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
If we list all the natural numbers up to 15 that are multiples of 3 or 5, we get 3, 5, 6, 9, 10, 12 and 15. The sum of these multiples is 60. Write a function called sum3and5muls that returns the sum of all the unique multiples of 3 or 5 up to n where n is a positive integer and the only input argument of the function. (Credit: Project Euler) I do anything the above question. I dont know loop yet. Can you give some hints please?
1 Kommentar
Antworten (4)
Jos (10584)
am 30 Okt. 2017
I give you a suggestion
tf = false(1,n)
tf(x:x:n) = true
w = find(tf)
sum(w)
0 Kommentare
Siehe auch
Kategorien
Mehr zu Loops and Conditional Statements finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!