Код: Выделить всё
int[] a = {0, 2, 4, 6, 8};
Код: Выделить всё
int [ ] a;
a = { 0, 2, 4, 6, 8 };
Подробнее здесь: https://stackoverflow.com/questions/862 ... ot-allowed
Код: Выделить всё
int[] a = {0, 2, 4, 6, 8};
Код: Выделить всё
int [ ] a;
a = { 0, 2, 4, 6, 8 };