Advertisement
Guest User

Untitled

a guest
Sep 22nd, 2019
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. import java.util.stream.Collectors;
  2.  
  3. public class Main {
  4. public static void main(String[] args) throws Exception {
  5.  
  6. String str = "JD\nJD\nJD";
  7. System.out.println(str);
  8. System.out.println(str.lines().collect(Collectors.toList()));
  9. }
  10. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement