Looping “aluminum” in reverse order, one letter per line should give result similar to this:
m
u
n
i
m
u
l
a

 Respuesta aceptada

Guillaume
Guillaume el 17 de Dic. de 2015

0 votos

for letter = fliplr('aluminium')
disp(letter)
end

Más respuestas (1)

Image Analyst
Image Analyst el 17 de Dic. de 2015

0 votos

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).

Categorías

Más información sobre Loops and Conditional Statements en Centro de ayuda y File Exchange.

Etiquetas

Preguntada:

el 17 de Dic. de 2015

Editada:

el 18 de Dic. de 2015

Community Treasure Hunt

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

Start Hunting!

Translated by