How to Loop in Reverse?

13 views (last 30 days)
Surajit Deb Barma
Surajit Deb Barma on 17 Dec 2015
Edited: Image Analyst on 18 Dec 2015
Looping “aluminum” in reverse order, one letter per line should give result similar to this:
m
u
n
i
m
u
l
a

Accepted Answer

Guillaume
Guillaume on 17 Dec 2015
for letter = fliplr('aluminium')
disp(letter)
end

More Answers (1)

Image Analyst
Image Analyst on 17 Dec 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).

Categories

Find more on Loops and Conditional Statements in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!