Advertisement
Guest User

Untitled

a guest
May 4th, 2016
52
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1. String[] a = null;
  2. List<Integer> numbers = new ArrayList<Integer>();
  3. while ((inputLine = bufferedReader.readLine()) != null) {
  4.  
  5. a = new String[inputLine.split(" ").length];
  6. a = inputLine.split(" ");
  7. System.out.println(a);
  8. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement