Как вывести матрицу 6*6 в С++???
For(int i=0;i<6;i++)<br>{ for j(int j=0; j<6;j++)<br>{ cout << array[i][j] << ' ';<br>} cout << endl;<br>}