ユーザーが行列のすべての値を入力すると、プログラムが行列を出力する単純なプログラムを作成しようとしています。これまでのところ、
#include <iostream>
using namespace std;
int main()
{
int n;
cout << "A is an nxn matrix.\nn=";
cin >> n;
int matrix[n-1][n-1];
for (int i=0;i<n;i++)
{
for (int j=0;j<n;j++)
{
cout << "A[" << i+1 << "][" << j+1 << "]=";
cin >> matrix[i][j];
}
}
cout << "[[ ";
for (int i=0;i<n;i++)
{
for (int j=0;j<n;j++)
{
cout << matrix[i][j] << " ";
}
if (i!=n-1) //Just to make the output pretty
cout << "]\n [ ";
else
cout << "]]";
}
}
`
ただし、[[1,2,3][4,5,6][7,8,9]] など、任意のサイズの行列を入力すると、プログラムは [[1,2,4][ 4,5,7][7,8,9]]。
なぜこれが起こっているのか、それを修正する方法を教えてもらえますか?