dejot on 07/14/12
Last Edited at 07/14/12 07:59am
public class HelloWorld { public static void main(String... args) { int[] a = new int[6]; int zaehler = 0; for (int i = 0; i < a.length; i++ ) { a[i] = ++zaehler; } for (int i = 0; i < a.length; i++) { int c = a[i]; System.out.println(c); } } }
Report this snippet Tweet
Comment:
You need to login to post a comment.