using For loop function to find the sum of the number

1 回表示 (過去 30 日間)
Joseph
Joseph 2022 年 2 月 8 日
コメント済み: Stephen23 2022 年 2 月 8 日
I want to know how to solve this problem

回答 (1 件)

Voss
Voss 2022 年 2 月 8 日
Well, if the question were how to find the sum of the even numbers between 2 and 102, inclusive, using a for loop, you could say:
total = 0;
for ii = 2:2:102
total = total+ii;
end
Maybe you can use the same approach for the actual question.

カテゴリ

Help Center および File ExchangeLoops and Conditional Statements についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by