How to Loop in Reverse?

13 次查看(过去 30 天)
Looping “aluminum” in reverse order, one letter per line should give result similar to this:
m
u
n
i
m
u
l
a

采纳的回答

Guillaume
Guillaume 2015-12-17
for letter = fliplr('aluminium')
disp(letter)
end

更多回答(1 个)

Image Analyst
Image Analyst 2015-12-17
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).

类别

Help CenterFile Exchange 中查找有关 Loops and Conditional Statements 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by