Guest User

Untitled

a guest
Jun 18th, 2018
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. {
  2. BufferedReader reader = new BufferedReader(new InputStreamReader(System.in));
  3. String wholeString = "";
  4.  
  5. String theNextLine = reader.readLine();
  6. for ( int i = 0; theNextLine ; ++i) {
  7. wholeString += theNextLine;
  8. theNextLine = reader.readLine();
  9. }
  10.  
  11. try {
  12. Split(wholeString);
  13. }
  14. catch (Exception e) {
  15. e.printStackTrace();
  16. }
  17. }
Add Comment
Please, Sign In to add comment