又一个小算法:
- public class Test {
- public static void main(String args[]){
- test("this is a test");
- }
- public static void test(String str){
- if(str!=null){
- String newStr = "";
- for(int i=0;i<str.length();i++)
- {
- char c = str.charAt(str.length()-1-i);
- System.out.println(str.length()-1-i);
- newStr = newStr + c;
- }
- System.out.println(newStr);
- }
- }
- }
复制代码 |
|