int[] a= {5, 4, 7, 4, 5, }; a[0]*a[3] int[] a= {5, 5, 2, 3, 5, }; a[4]*a[4] int[] z = {1,2,3}; z = new int[10];boolean[] bf = new boolean[4]; System.out.println(Arrays.toString(bf));
int[] f; System.out.print( f );
int[] f = null; System.out.print(f);
int[] a = {1,2,3};
int[] b = a;
System.out.print( b[1] );
a[1] = 3;
System.out.print(" " + b[1]);int[] z = {0,0,0};
++z[1];
++z[1];
++z[2];
System.out.print(z[0] + " " + z[1] + " " + z[2]);int[] z = {1, 3, 9, 16};
int i = 1;
System.out.print(++z[i]);
System.out.print(" ");
System.out.print(z[++i]);int[] z = {1, 3, 9, 16};
int i = 1;
System.out.print(++z[++i]);| bos/code | Sep 02, 14:09 |
| seminar/Befehle | Sep 02, 14:09 |
| seminar/latex | Sep 02, 14:09 |
| seminar/seminar | Sep 02, 14:09 |
| atest/CleanCode | Sep 02, 14:09 |
| atest/Datenstrukturen | Sep 02, 14:09 |