Ответ: int matrix[n][n] = { /* заполнение */ }for (size_t i = 0; i < n; ++i) if (matrix[i][i] >= 0) cout << matrix[i][i] << ‘\,n’;