Need help with a While loop: Summation
Ältere Kommentare anzeigen
% 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 Kommentare
Lily Pestorius
am 17 Apr. 2021
Cris LaPierre
am 17 Apr. 2021
Did you mean to create a recursive function?
Antworten (1)
You need this line:
summedValue = summedValue + i;
There is no need to call this function recursively, so omit the line
SummationWithLoop
Kategorien
Mehr zu Loops and Conditional Statements finden Sie in Hilfe-Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!