Guest User

Untitled

a guest
Apr 21st, 2018
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. public void SparaFil ()
  2. {
  3. try
  4. {
  5. output = new PrintWriter (new File ("fil.txt"));
  6. }
  7. catch(FileNotFoundException e)
  8. {
  9. System.out.println(e.getMessage( ));
  10. System.exit(0);
  11. }
  12. for(int i=0;i<size;i++)
  13. {
  14. output.println(v[i] + " ");
  15. if ( i%10 == 0)
  16. output.print("\n");
  17. output.close( );
  18. }
  19. }
  20. publi
Add Comment
Please, Sign In to add comment