简体   繁体   English

C++ - 将二维数组传递给 function

[英]C++ - Passing 2D array to function

I am trying to pass a 2D array to a function but I am failing to do so.我正在尝试将二维数组传递给 function 但我没有这样做。 There is no problem with passing 1D array.传递一维数组没有问题。 How can I do this?我怎样才能做到这一点?

    #include <iostream>

using namespace std;

void DisplayBoard(int matrix[],int n) // Prints out the given array.
{
        for (int j = 0; j < n; j++)
        {
                cout << matrix[j];
        }
}

int main()
{
    int n,m;
    cin>>n;
    //int matrix[n]={};
    DisplayBoard(matrix,n);
    return 0;
}

i think you want to input index number (n) from user and then input array object from user too我想你想从用户输入索引号(n),然后从用户输入数组 object
i complete your code like this:我像这样完成你的代码:

#include <iostream>
using namespace std;

void DisplayBoard(int matrix[],int n) // Prints out the given array.
{ 
  cout<<endl ; 
     for (int j = 0; j < n; j++)
      {
              cout << matrix[j]<<" ";
       }
    }

     int main() {
       int n,m;
         cin>>n ; 
         int matrix[n];
  
         for(int i=0;i<n;i++) {
            cin>>matrix[i];
               } 
             DisplayBoard(matrix,n);
          return 0;
        }

remember to declare array in main function too, that was one of your code error !记得在主 function 中声明数组,这是你的代码错误之一!

and this is incorrect to declare array:声明数组是不正确的:

int matrix[n]={} // incorrect !
Well. int matrix[n]={}; fills it with zeros and that's what I wanted to do. And my code with 1D array works fine but if I do it like so it does not.

    #include <iostream>

using namespace std;

void DisplayMatrix(int matrix[][],int n,int m)
{
    for(int i=0;i<n;i++)
    {
        for (int j = 0; j < m; j++)
        {
                cout << matrix[j];
        }
    }
}

int main()
{
    int n,m;
    cin>>n>>m;
    int matrix[n][m]={};
    DisplayMatrix(matrix,n,m);
    return 0;
}

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM