public String reversal(String x){ int y = x.lenght(); String s ="" for(Int j=y-1;j>=0;j--) s+=x.charAt(j); return s; }