How can I make a for loop a while loop?
    5 visualizzazioni (ultimi 30 giorni)
  
       Mostra commenti meno recenti
    
    Susana Salinas
 il 5 Feb 2020
  
    
    
    
    
    Risposto: Susana Salinas
 il 5 Feb 2020
            x57a= [];
for i= 1:1000 
    if rem(i,5) ==0 || rem(i,7) ==0 
        if rem(i,5)==0 && rem(i,7) ==0 
            continue;
        end
        x57a = [x57a, i]; 
    end 
end
I wrote this code as a for loop but I want to know how it would look like as a while loop
0 Commenti
Risposta accettata
  Bhaskar R
      
 il 5 Feb 2020
        x57a= [];
i = 1;
while i<= 1000 
    if rem(i,5) ==0 || rem(i,7) ==0 
        if rem(i,5)==0 && rem(i,7) ==0 
            i = i +1;
            continue;
        end
        x57a = [x57a, i]; 
    end
    i = i+1;
end
0 Commenti
Più risposte (1)
Vedere anche
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!