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!