Effacer les filtres
Effacer les filtres

Info

Cette question est clôturée. Rouvrir pour modifier ou répondre.

How to create specific while loop code

2 vues (au cours des 30 derniers jours)
Jonathon Mook
Jonathon Mook le 2 Mai 2020
Clôturé : MATLAB Answer Bot le 20 Août 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?

Réponses (1)

Olawale Ikuyajolu
Olawale Ikuyajolu le 2 Mai 2020
answer =1
for i = 2:2:10
answer = answer * i
end
print('answer')
  3 commentaires
Olawale Ikuyajolu
Olawale Ikuyajolu le 2 Mai 2020
answer = 1
i = 2
while i <= 10
answer = answer * i
i = i+2
end
answer
darova
darova le 2 Mai 2020

Cette question est clôturée.

Community Treasure Hunt

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

Start Hunting!

Translated by