Advertisement
Guest User

Untitled

a guest
Nov 20th, 2017
69
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.Scanner;
  2.  
  3. public class Main {
  4.  
  5. public static void main(String[] args) {
  6.  
  7. Scanner s = new Scanner(System.in);
  8. System.out.print("Podaj dłgość tablicy: ");
  9. int n = s.nextInt();
  10. int [] tablica = new int [n];
  11. for(int i = 0; i < tablica.length; i++){
  12. tablica[i] += 1;
  13. }
  14. for(int i = 0; i < tablica.length; i++){
  15. System.out.print(tablica[i] + " ");
  16. }
  17. }
  18. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement