Kimes

Tablica

Oct 25th, 2016
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.19 KB | None | 0 0
  1. public class Test {
  2.  
  3.     public static void main(String[] args) {
  4.  
  5.         int[] a = new int[100];
  6.         for (int i = 0; i < a.length; i++){
  7.             a[i] = i;
  8.             System.out.println(a[i]);
  9.         }          
  10.     }
  11. }
Advertisement
Add Comment
Please, Sign In to add comment