I attempted to add all whole numbers 1 to 100 by using a loop and displaying the result, but it did not work. I was wondering why it didn't work and what would work instead/ how to improve my code?
3 次查看(过去 30 天)
显示 更早的评论
i = 1
For
i <=100
i = disp (i+1)
end
0 个评论
回答(1 个)
Mehmed Saad
2020-5-16
While loop is used for that purpose (in which you specify stopping condition)
while i <100
i =(i+1);
disp(i)
end
0 个评论
另请参阅
类别
在 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!