下列数组的初始化正确的是()
int[ ] score = new int[ ];
int score[ ] = new int[ ] { 34, 90, 87, 54, 24 };
int[ ] score = new int[ 4 ] { 90, 12, 34, 77 };
int score = { 78, 23, 44, 78 };
可以使用 int[] score;或者int score[]两种方式声明数组