Can anyone replace FOR loop with WHILE loop?

Risposte (1)

Andrei Bobrov
Andrei Bobrov il 9 Dic 2013
Modificato: Andrei Bobrov il 9 Dic 2013
k = 0;
x = 0;
while x >= 0
k = k + 1;
x = 50 - k^2;
end
y = sqrt(x);

2 Commenti

x =
-14 ? why?
x have to plus (+)
Not in your code. Your "for" loop tests x<0 after it sets x to the new value. So the loop is not going to end until it is already true that x<0.

Accedi per commentare.

Categorie

Scopri di più su Loops and Conditional Statements in Centro assistenza e File Exchange

Tag

Richiesto:

il 9 Dic 2013

Community Treasure Hunt

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

Start Hunting!

Translated by