Guest User

Untitled

a guest
Apr 21st, 2018
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 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. System.out.print((i%10==9) ? v[i]+"\n" : v[i]+"\t" );
  15.  
  16. }
  17. output.close( );
  18. }
  19. publi
Add Comment
Please, Sign In to add comment