Advertisement
Guest User

Untitled

a guest
Feb 14th, 2016
49
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.47 KB | None | 0 0
  1. import java.util.*;
  2. public class NumeriArray {
  3.  
  4. public static void main(String[] args) {
  5.  
  6. int n,n1,i,i1;
  7. Scanner tastiera = new Scanner(System.in);
  8.  
  9. System.out.println("Inserisci la lunghezza del primo array: ");
  10. n=tastiera.nextInt();
  11. System.out.println("Inserisci la lunghezza del primo array: ");
  12. n1=tastiera.nextInt();
  13.  
  14. int[] serie1 = new int[n];
  15. int[] serie2 = new int[n1];
  16.  
  17. for(i=0,i<n.lenght,i++)
  18. {
  19. }
  20.  
  21.  
  22.  
  23. }
  24.  
  25. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement