フィルターのクリア

Info

この質問は閉じられています。 編集または回答するには再度開いてください。

How to create specific while loop code

2 ビュー (過去 30 日間)
Jonathon Mook
Jonathon Mook 2020 年 5 月 2 日
閉鎖済み: MATLAB Answer Bot 2021 年 8 月 20 日
I am aware this is farely simple question, but I am trying to learn Matlab. How do I create a while loop that multiplies say all the even numbers between 2 and 10 together?

回答 (1 件)

Olawale Ikuyajolu
Olawale Ikuyajolu 2020 年 5 月 2 日
answer =1
for i = 2:2:10
answer = answer * i
end
print('answer')
  3 件のコメント
Olawale Ikuyajolu
Olawale Ikuyajolu 2020 年 5 月 2 日
answer = 1
i = 2
while i <= 10
answer = answer * i
i = i+2
end
answer
darova
darova 2020 年 5 月 2 日

この質問は閉じられています。

Community Treasure Hunt

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

Start Hunting!

Translated by