can anyone help me ??
Infos
Cette question est clôturée. Rouvrir pour modifier ou répondre.
Afficher commentaires plus anciens
Write a MATLAB script (called rev.m) which reads a number of strings from standard input and prints them in reverse order on the command window.
The input sequence is terminated with the string END.
Hint: Use a cell array!
3 commentaires
James Tursa
le 21 Déc 2016
What have you done so far? Please post your code and ask specific questions about it. Then we can offer suggestions and corrections.
David Barry
le 21 Déc 2016
Try this.
in = 'can somebody do my homework for me';
out = strrep(in, in, char([110, 111]))
Réponses (0)
Cette question est clôturée.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!