Clear Filters
Clear Filters

Info

This question is closed. Reopen it to edit or answer.

How to create specific while loop code

2 views (last 30 days)
Jonathon Mook
Jonathon Mook on 2 May 2020
Closed: MATLAB Answer Bot on 20 Aug 2021
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?

Answers (1)

Olawale Ikuyajolu
Olawale Ikuyajolu on 2 May 2020
answer =1
for i = 2:2:10
answer = answer * i
end
print('answer')
  3 Comments
Olawale Ikuyajolu
Olawale Ikuyajolu on 2 May 2020
answer = 1
i = 2
while i <= 10
answer = answer * i
i = i+2
end
answer

This question is closed.

Community Treasure Hunt

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

Start Hunting!