Filter löschen
Filter löschen

Info

Diese Frage ist geschlossen. Öffnen Sie sie erneut, um sie zu bearbeiten oder zu beantworten.

How to create specific while loop code

2 Ansichten (letzte 30 Tage)
Jonathon Mook
Jonathon Mook am 2 Mai 2020
Geschlossen: MATLAB Answer Bot am 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?

Antworten (1)

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

Diese Frage ist geschlossen.

Community Treasure Hunt

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

Start Hunting!

Translated by