Skip to content

Instantly share code, notes, and snippets.

@pscollins
Created May 17, 2014 00:00
Show Gist options
  • Save pscollins/d91c445bcc7ac4b0e59e to your computer and use it in GitHub Desktop.
Save pscollins/d91c445bcc7ac4b0e59e to your computer and use it in GitHub Desktop.
while (inputScanner.hasNext()) {
Scanner currentLine = Scanner(inputScanner.nextLine());
while(currentLine.hasNextInt()){
Integer current = currentLine.nextInt();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment