2017-06-03 68 views

回答

1

而是執行此操作:

int[][] results = new int[3][]; 
for (int i = 0; i < results.Length; i++) 
    results[i] = new int[3]; 
相關問題