Search:

Type: Posts; User: cloudMichael

Search: Search took 0.09 seconds.

  1. Replies
    4
    Views
    1,330

    Re: Help with java char Array

    static void guess(String secret, int times) {
    // read character from console
    Scanner reader = new Scanner(System.in);

    int secretLen = secret.length();
    int timesCount = 0, index = 0;
    ...
  2. Re: Reverse the order of Strings in an ArrayList?

    How about just using Collections.reverse(list_parameters)? That saves a lot of your time
  3. Replies
    4
    Views
    1,122

    Re: ArrayOutOfBoundsException

    The arrayOutofBoundsException means that the capacity of array you wanna store the elements is not big enough. So it is out of bounds. Here is the figuration:
    1. you can change the capacity of your...
Results 1 to 3 of 3