Borrar filtros
Borrar filtros

Hi everyone, Can you help me

1 visualización (últimos 30 días)
SULE SAHIN
SULE SAHIN el 30 de Oct. de 2017
Comentada: Walter Roberson el 27 de Abr. de 2018
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 comentario
Walter Roberson
Walter Roberson el 27 de Abr. de 2018
Please do not close questions that have an answer.

Iniciar sesión para comentar.

Respuestas (4)

Jos (10584)
Jos (10584) el 30 de Oct. de 2017
I give you a suggestion
tf = false(1,n)
tf(x:x:n) = true
w = find(tf)
sum(w)

Walter Roberson
Walter Roberson el 30 de Oct. de 2017
Hint: 3:3:15

Andrei Bobrov
Andrei Bobrov el 30 de Oct. de 2017
sum([3:3:n,5:5:n]);
  1 comentario
Walter Roberson
Walter Roberson el 30 de Oct. de 2017
This doesn't give use unique multiples.

Iniciar sesión para comentar.


SULE SAHIN
SULE SAHIN el 30 de Oct. de 2017
Editada: Walter Roberson el 30 de Oct. de 2017
function sumof = sum3and5muls(n)
sumof = sum([3:3:n])+sum([5:5:n])-sum([15:15:n]);
Problem 8 (sum3and5muls): Testing with argument(s) 1 Feedback: Your program made an error for argument(s) 1
Your solution is _not_ correct.
What is wrong in my code?
  3 comentarios
Walter Roberson
Walter Roberson el 30 de Oct. de 2017
No, the problem talks about unique multiples.
Walter Roberson
Walter Roberson el 30 de Oct. de 2017
SULE SAHIN: your code looks acceptable to me.

Iniciar sesión para comentar.

Categorías

Más información sobre Software Development Tools en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by