2017-06-03 46 views

回答

1

而是执行此操作:

int[][] results = new int[3][]; 
for (int i = 0; i < results.Length; i++) 
    results[i] = new int[3]; 
相关问题