Azzera filtri
Azzera filtri

Info

Questa domanda è chiusa. Riaprila per modificarla o per rispondere.

How to create specific while loop code

2 visualizzazioni (ultimi 30 giorni)
Jonathon Mook
Jonathon Mook il 2 Mag 2020
Chiuso: MATLAB Answer Bot il 20 Ago 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?

Risposte (1)

Olawale Ikuyajolu
Olawale Ikuyajolu il 2 Mag 2020
answer =1
for i = 2:2:10
answer = answer * i
end
print('answer')
  3 Commenti
Olawale Ikuyajolu
Olawale Ikuyajolu il 2 Mag 2020
answer = 1
i = 2
while i <= 10
answer = answer * i
i = i+2
end
answer

Questa domanda è chiusa.

Community Treasure Hunt

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

Start Hunting!

Translated by