필터 지우기
필터 지우기

Hi everyone, Can you help me

조회 수: 1 (최근 30일)
SULE SAHIN
SULE SAHIN 2017년 10월 30일
댓글: Walter Roberson 2018년 4월 27일
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
Walter Roberson
Walter Roberson 2018년 4월 27일
Please do not close questions that have an answer.

댓글을 달려면 로그인하십시오.

답변 (4개)

Jos (10584)
Jos (10584) 2017년 10월 30일
I give you a suggestion
tf = false(1,n)
tf(x:x:n) = true
w = find(tf)
sum(w)

Walter Roberson
Walter Roberson 2017년 10월 30일
Hint: 3:3:15

Andrei Bobrov
Andrei Bobrov 2017년 10월 30일
sum([3:3:n,5:5:n]);
  댓글 수: 1
Walter Roberson
Walter Roberson 2017년 10월 30일
This doesn't give use unique multiples.

댓글을 달려면 로그인하십시오.


SULE SAHIN
SULE SAHIN 2017년 10월 30일
편집: Walter Roberson 2017년 10월 30일
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
Walter Roberson
Walter Roberson 2017년 10월 30일
No, the problem talks about unique multiples.
Walter Roberson
Walter Roberson 2017년 10월 30일
SULE SAHIN: your code looks acceptable to me.

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 Software Development Tools에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by