Advertisement
Guest User

Untitled

a guest
Feb 28th, 2014
185
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.52 KB | None | 0 0
  1. import java.io.File;
  2. import java.io.FileNotFoundException;
  3. import java.util.Scanner;
  4.  
  5. public class PracaZplikiem3{
  6.  
  7. public static void main(String[] args) throws FileNotFoundException
  8. {
  9. int[] tablica;
  10. File file = new File("data.txt");
  11. Scanner in = new Scanner(file);
  12.  
  13. int liczbaElementow = in.nextInt();
  14. tablica= new int[liczbaElementow];
  15.  
  16. for(int i=0; i<tablica.length; i++)
  17. tablica[i] = i+1;
  18. while(file !=null){
  19. System.out.println(tablica);
  20. }
  21. }
  22. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement