Finally, we are printing str2.
1 public class FinalReverseWithoutUsingStringMethods {
2
3 public static void main(String[] args) {
4 // TODO Auto-generated method stub
5 String str = "Automation";
6 StringBuilder str2 = new StringBuilder();
7 [Link](str);
8 str2 = [Link](); // used string builder to reverse
9 [Link](str2);
10 }
11
12 }
Output:
noitamotuA