Advertisement
Guest User

Untitled

a guest
Jan 21st, 2020
108
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. package test2;
  2.  
  3. public class test2 {
  4.  
  5. public static void main(String[] args) {
  6. // TODO Auto-generated method stub
  7.  
  8.  
  9.  
  10.  
  11. int[] i = new int[188]; // Feld deklariet und angelegt
  12. int n;
  13. int max = 188;
  14. for (n = 0; n < max; n++)
  15. {
  16. i [n] = n;
  17. }
  18.  
  19. for (n = 0; n < max; n++)
  20. {
  21.  
  22. System.out.println(i[n]);
  23.  
  24.  
  25.  
  26. }
  27.  
  28. }
  29. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement