📜  c++代码示例中的转置函数示例

📅  最后修改于: 2022-03-11 14:44:58.464000             🧑  作者: Mango

代码示例1
#include
using namespace std;
int main()
{
  int a[10][10], transpose[10][10], row, column, i, j;
  cin>>row;
  cin>>column;
  cout<<"Enter the elements of the matrix:"<