How to Loop in Reverse?
Afficher commentaires plus anciens
Looping “aluminum” in reverse order, one letter per line should give result similar to this:
m
u
n
i
m
u
l
a
Réponse acceptée
Plus de réponses (1)
Image Analyst
le 17 Déc 2015
If this homework? Just use a for loop with a negative step
for k = length(yourString) : -1 : 1
fprintf('%s', yourString(k));
end
Adapt as needed. There are other ways too, like yourString(end-k+1) or using fliplr(yourString).
Catégories
En savoir plus sur Loops and Conditional Statements dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!