필터 지우기
필터 지우기

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