Converting for loop to while loop
1 visualizzazione (ultimi 30 giorni)
Mostra commenti meno recenti
Dominic Garcia
il 21 Ott 2020
Commentato: Dominic Garcia
il 22 Ott 2020
Need it as quick as possible Please, thanks
0 Commenti
Risposta accettata
Asad (Mehrzad) Khoddam
il 21 Ott 2020
for i =1:5
j=1;
k=1;
while j<=5-i
fprintf(' ');
j = j+1;
end
while k<=i
fprintf('*');
k = k+1;
end
fprintf('\n')
end
Più risposte (0)
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!