Sponsored Link •
|
Advertisement
|
Advertisement
|
This page contains an archived post to the Java Answers Forum made prior to February 25, 2002. If you wish to participate in discussions, please visit the new Artima Forums.
Message:
Say the String is called text, it would be something like this: -------------------------------------------- String reversed; for (int i = text.length(); i >= 0; i--) { -------------------------------------------- I think! I don't have a copy of Java on this computer so I can't test that, but I think it should work. If not you get the general idea.
Replies:
|
Sponsored Links
|