How to Loop in Reverse?
14 ビュー (過去 30 日間)
古いコメントを表示
Looping “aluminum” in reverse order, one letter per line should give result similar to this:
m
u
n
i
m
u
l
a
0 件のコメント
採用された回答
その他の回答 (1 件)
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).
0 件のコメント
参考
カテゴリ
Help Center および File Exchange で Loops and Conditional Statements についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!