Search:

Type: Posts; User: JavaChiq

Search: Search took 0.07 seconds.

  1. Re: Learning - could someone explain this code to me?

    Hi, I think I understand what youre saying. The toUppercase method is void because it is not returning anything back to main. The way it is converting the strings to uppercase is via a direct...
  2. Learning - could someone explain this code to me?

    class Passer {

    void toUpperCase(String[] text) {
    for (int i = 0; i < text.length; i++) {
    text[i] = text[i].toUpperCase();
    }
    }

    public static void...
Results 1 to 2 of 2