Search:

Type: Posts; User: Cornix

Search: Search took 0.09 seconds.

  1. Re: Continuously get user's input until an empty string is entered

    Did you enter a single space character or an empty string? Because these two are not the same:

    "".equals(" ") == false
  2. Re: Continuously get user's input until an empty string is entered

    Dont compare strings with "==", you HAVE to use the equals() method to compare Strings.
Results 1 to 2 of 2