String reverse
public class StrReverse{
public static void main(String []args){
String str="Java
world";
String revstr="";
int length = str.length();
for(int i=length -1;i>=0;i--){
}
System.out.println(revstr);
}
}
Output:
dlrow avaJ
EmoticonEmoticon