Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- public static int WordLengthCount() throws FileNotFoundException {
- File file = new File("hello.txt");
- Scanner keyboard = new Scanner(new FileInputStream(file));
- int count5 = 0;
- while (keyboard.hasNext()) {
- if (keyboard.next().length() == 5) {
- count5++;
- }
- }
- return count5;
- }
Advertisement
Add Comment
Please, Sign In to add comment