Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- /**
- * The InputReader class is use for reading the input entry
- *
- * @author Daffa Tristan Firdaus
- * @version 0.1 (11 November 2020)
- */
- import java.util.*;
- public class InputReader
- {
- private Scanner reader;
- public InputReader()
- {
- reader = new Scanner(System.in);
- }
- /**
- * Read user input
- */
- public HashSet<String> getInput()
- {
- System.out.print(">> ");
- String inputLine = reader.nextLine().trim().toLowerCase();
- String[] wordArray = inputLine.split(" ");
- HashSet<String> words = new HashSet<String>();
- for(String word : wordArray)
- {
- words.add(word);
- }
- return words;
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement