How to create specific while loop code

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?

Respuestas (1)

Olawale Ikuyajolu
Olawale Ikuyajolu el 2 de Mayo de 2020
answer =1
for i = 2:2:10
answer = answer * i
end
print('answer')

3 comentarios

Jonathon Mook
Jonathon Mook el 2 de Mayo de 2020
That was not the loop I was needing. I need the "while" loop.
answer = 1
i = 2
while i <= 10
answer = answer * i
i = i+2
end
answer
darova
darova el 2 de Mayo de 2020

La pregunta está cerrada.

Etiquetas

Preguntada:

el 2 de Mayo de 2020

Cerrada:

el 20 de Ag. de 2021

Community Treasure Hunt

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

Start Hunting!

Translated by