sum of multiples of 3 from 0 to 100

조회 수: 23 (최근 30일)
Mina
Mina 2021년 6월 4일
댓글: Walter Roberson 2021년 6월 5일
Calculate the sum of all the multiples of 3 from 0 to 100 without using an if construct or vectorization.
I'm not sure how to do it without using an if construct.
sum = 0;
for x = 0:100
if mod(x,3) == 0
sum = sum + x;
end
end
fprintf ('The sum is %4d \n', sum);
  댓글 수: 1
David Fletcher
David Fletcher 2021년 6월 4일
편집: David Fletcher 2021년 6월 4일
You're using an if construct - the only reason you need an if construct is to filter out the numbers that you don't need. So, don't generate the useless numbers in the first place.
As a hint - you can use a step size when writing this: for x = 0:100

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

답변 (3개)

Rik
Rik 2021년 6월 5일
If I was your teacher I would just tell you to use a loop, leaving you to decide what you aren't allowed to do.
In this case you need to read the documentation for the colon function. It will tell you how you can introduce a step size.
doc colon
You should also avoid the use of sum as a variable name, as you are likely to use the sum function elsewhere in your code. If it already is a variable, that will cause strange issues.
  댓글 수: 1
Walter Roberson
Walter Roberson 2021년 6월 5일
I think the colon would count as vectorization.
It is then questionable whether using a colon in a for counts as vectorization. The model MATLAB uses is as if the limit expression was evaluated and all of the terms were stored ahead of time, but there is evidence that the implementation does not do that in the case of using a colon range.

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


Manas Minnoor
Manas Minnoor 2021년 6월 5일
편집: Manas Minnoor 2021년 6월 5일
Hey Mina,
You can generate only the multiples of 3 in the for loop using the colon operator.
Please refer to the following documentation to view the different ways to utilize a for loop:
Hope this helps.
  댓글 수: 1
Rik
Rik 2021년 6월 5일
Please refrain from posting complete solutions to homework questions. That only encourages cheating.

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


Walter Roberson
Walter Roberson 2021년 6월 5일
s = 0;
for x = 0 : 100
s = s + (mod(x,3) == 0).*x;
end
s
s = 1683
sum(0:3:100)
ans = 1683
  댓글 수: 2
Rik
Rik 2021년 6월 5일
If colon is vectorization, then you should probably replace this with a while loop.
Walter Roberson
Walter Roberson 2021년 6월 5일
Does a while loop count as an if statement ?

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

카테고리

Help CenterFile Exchange에서 Loops and Conditional Statements에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by