我正在尝试将 2D 数组转换为 1D。我对 C/C++ 非常陌生,但我认为学习如何将 2D 数组转换为 1D 非常重要。所以在这里我偶然发现了这个问题。
到目前为止,我的代码是 http://ideone.com/zvjKwP
#include<iostream>
using namespace std;
int main()
{
int n=0,m=0; // 2D array nRow, nCol
int a[n][m];
int i,j; // цикъл въвеждане 2D
int q,p,t; // for 2D=>1D
int b[100];
int r; // for cout
cout<<"Enter the array's number of rows and columns: ";
cin>>n>>m;
// entering values for the 2D array
for (i = 0;i<=n;i++)
{
for (j = 0;j<=m;j++)
{
cout<<"a["<<i<<"]["<<j<<"]="<<endl;
cin>>a[i][j];
cin.ignore();
}
}
// Most likely the failzone IMO
for (q = 0;q<=i;q++)
{
for (t = 0;t<=i*j+j;t++)
{
b[t] = a[i][j];
}
}
// attempting to print the 1D values
cout<<"The values in the array are"<<"\n";
for(r=0;r<=t;r++)
{
cout<<"b["<<r<<"] = "<<b[r]<<endl;
}
cin.get();
return 0;
}
我在我认为我失败的地方写了一条评论。
我还必须将进入 1D 的数字限制为 value^2 大于 50 的数字。但我肯定必须通过转换 2D=>1D 来解决问题你能帮帮我吗?