필터 지우기
필터 지우기

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?

조회 수: 1 (최근 30일)
i = 1
For
i <=100
i = disp (i+1)
end

답변 (1개)

Mehmed Saad
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

카테고리

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