Advertisement
mr1302

lab8

Oct 29th, 2021
115
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.06 KB | None | 0 0
  1. package com.company;
  2.  
  3. import java.io.IOException;
  4. import java.nio.file.Files;
  5. import java.nio.file.Paths;
  6. import java.nio.file.StandardOpenOption;
  7. import java.util.Scanner;
  8.  
  9. public class Main {
  10.  
  11. public static void main(String[] args) throws IOException {
  12. String filePath = "C:\\Users\\mr130.DESKTOP-AMSJBJ3\\IdeaProjects\\Lab8\\src\\com\\company\\text.txt";
  13. Scanner scanner = new Scanner(System.in);
  14. String text = "";
  15. while (scanner.hasNextLine()) {
  16. text += "\n" + scanner.nextLine();
  17. }
  18. Files.write(Paths.get(filePath), text.getBytes(), StandardOpenOption.APPEND);
  19. }
  20. }
  21.  
  22.  
  23. So the story goes
  24. Owner of a lonely heart
  25. Owner of a lonely heart
  26. (Much better than a)
  27. Owner of a broken heart
  28. Owner of a lonely heart
  29. Say, you don't want to chance it
  30. You've been hurt so before
  31. Watch it now
  32. The eagle in the sky
  33. How he dancin' one and only
  34. You, lose yourself
  35. No not for pity's sake
  36. There's no real reason to be lonely
  37. Be yourself
  38. Give your free will a chance
  39. You've got to want to succeed
  40. Owner of a lonely heart
  41. Owner of a lonely heart
  42. (Much better than a)
  43. Owner of a broken heart
  44. Owner of a lonely heart
  45. Owner of a lonely heart
  46. After my own indecision
  47. They confused me so
  48. Owner of a lonely heart
  49. My love said never question your will at all
  50. In the end you've got to go
  51. Look before you leap
  52. Owner of a lonely heart
  53. And don't you hesitate at all, no no
  54. Yow!
  55. Owner of a lonely heart
  56. Owner of a lonely heart
  57. (Much better than a)
  58. Owner of a broken heart
  59. Owner of a lonely heart
  60. Owner of a lonely heart
  61. Owner of a lonely heart
  62. (Much better than a)
  63. Owner of a broken heart
  64. Owner of a lonely heart
  65. Owner of a lonely heart
  66. Sooner or later each conclusion
  67. Will decide the lonely heart
  68. Owner of a lonely heart
  69. It will excite, it will delight
  70. It will give a better start
  71. Owner of a lonely heart
  72. Don't deceive your free will at all
  73. Don't deceive your free will at all
  74. Owner of a lonely heart
  75. Don't deceive your free will at all
  76. Just receive it
  77. Just receive it
  78. (Owner of a lonely heart)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement