Guest User

Untitled

a guest
Dec 9th, 2018
98
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. private static String consoleInput(String prompt) throws IOException
  2. {
  3. if(prompt != null)
  4. {
  5. System.out.print(prompt);
  6. }
  7. BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
  8. return br.readLine();
  9. }
Add Comment
Please, Sign In to add comment