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).
Need help with a While loop: Summation
5 次查看(过去 30 天)
显示 更早的评论
% 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 个评论
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Loops and Conditional Statements 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!