gpt4 book ai didi

c++ - 在 C++ 中根据用户输入创建矩阵的问题

转载 作者:行者123 更新时间:2023-11-28 03:07:50 26 4
gpt4 key购买 nike

我正在尝试制作一个简单的程序,用户输入矩阵的每个值,然后程序打印矩阵。到目前为止我有

#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]].

谁能告诉我为什么会发生这种情况以及如何解决它?

最佳答案

当您的 的 i 或 j 等于 n-1 时,您将在 matrix[i][j] 中访问超出范围的未定义行为矩阵声明为matrix[n-1][n-1]

使用:

int 矩阵[n][n];//会说 0 到 n-1

代替

整数矩阵[n-1][n-1];

关于c++ - 在 C++ 中根据用户输入创建矩阵的问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19262492/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com