This whileloop is strange: while (scanner.hasNextLine()) { String line = scanner.nextLine(); while (line != null) { String word = scanner.next(); addWord(word, linecount); } ...
-
April 4, 2022
- 0 Comments