Need help with a While loop: Summation

% Write a while loop that assigns summedValue with the sum of all values from 1 to userNum.
% Assume userNum is always greater than or equal to 1
function summedValue = SummationWithLoop(userNum)
% Summation of all values from 1 to userNum
summedValue = 0;
i = 1;
while (i<=userNum);
i=i+1
SummationWithLoop
% Write a while loop that assigns summedValue with the
% sum of all values from 1 to userNum
end

댓글 수: 2

Lily Pestorius
Lily Pestorius 2021년 4월 17일
Sorry I forgot to include what I am confused about. I am a little confused about which variables I should be putting where, I know that if SummationWithLoop is 5 then the answer should be 15 (1+2+3+4+5=15).
Cris LaPierre
Cris LaPierre 2021년 4월 17일
Did you mean to create a recursive function?

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

답변 (1개)

Jan
Jan 2021년 4월 17일
편집: Jan 2021년 4월 17일

0 개 추천

You need this line:
summedValue = summedValue + i;
There is no need to call this function recursively, so omit the line
SummationWithLoop

카테고리

도움말 센터File Exchange에서 Loops and Conditional Statements에 대해 자세히 알아보기

질문:

2021년 4월 17일

편집:

Jan
2021년 4월 17일

Community Treasure Hunt

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

Start Hunting!

Translated by