Search:

Type: Posts; User: moodycrab3

Search: Search took 0.17 seconds.

  1. Replies
    3
    Views
    1,207

    [SOLVED] Re: String Reversal.... Not working

    OH MY GOD... u are a genius... Thank you so much... I have been trying to figure this out since yesterday... Thank you so very much....

    thank you
    thank you
  2. Replies
    3
    Views
    1,207

    [SOLVED] String Reversal.... Not working

    class jack
    {
    public static String reverseString(String s, String result,int l)
    {
    if(l>=0)
    { result=result+s.charAt(l);
    reverseString(s,result,l-1);
    return result;}
    else
    return "error";
Results 1 to 2 of 2