Converting for loop to while loop
1 vue (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Dominic Garcia
le 21 Oct 2020
Commenté : Dominic Garcia
le 22 Oct 2020
Need it as quick as possible Please, thanks
0 commentaires
Réponse acceptée
Asad (Mehrzad) Khoddam
le 21 Oct 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
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur Loops and Conditional Statements dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!