Azzera filtri
Azzera filtri

I attempted to add all whole numbers 1 to 100 by using a loop and displaying the result, but it did not work. I was wondering why it didn't work and what would work instead/ how to improve my code?

1 visualizzazione (ultimi 30 giorni)
i = 1
For
i <=100
i = disp (i+1)
end

Risposte (1)

Mehmed Saad
Mehmed Saad il 16 Mag 2020
While loop is used for that purpose (in which you specify stopping condition)
while i <100
i =(i+1);
disp(i)
end

Categorie

Scopri di più su Loops and Conditional Statements in Help Center e File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by