Search:

Type: Posts; User: Alaa

Search: Search took 0.08 seconds.

  1. Thread: reverse program

    by Alaa
    Replies
    4
    Views
    1,008

    Re: reverse program

    hello,
    i believe i can not reverse if i can not do so, there is no way to get out without using string methods, however check that if the requirement does not allow you to use the string.reverse()...
  2. Thread: reverse program

    by Alaa
    Replies
    4
    Views
    1,008

    Re: reverse program

    hello,
    have a look to this code and see what you get...

    public void reverse(String str)
    {
    int length = str.length();

    for(int i = length-1; i >= 0; i--)
    {...
Results 1 to 2 of 2