Информатика, вопрос задал mataza , 2 года назад

Помогите пожалуйста. Задача: Транспонирование целочисленной матрицы 5x5 относительно главной диагонали. Нужно сделать на С++

Ответы на вопрос

Ответил qweqwefifififi
1

Відповідь:

Пояснення:

#include<iostream>

using namespace std;

const int n=5;

void input(int a[n][n]);

void print(int a[n][n]);

void trans(int a[n][n]);

int main()

{

   int m[n][n];

   input(m);

   print(m);

   trans(m);

   print(m);

   return 0;

}

void print(int a[n][n])

{

   cout<<"matrica:\n";

   for(int i=0;i<n;i++)

   {

       for(int j=0;j<n;j++)

       {

           cout<<a[i][j]<<" ";

       }

       cout<<endl;

   }

   cout<<endl;

}

void input(int a[n][n])

{

   cout<<"vvedi matricu:\n";

   for(int i=0; i<n; i++)

   {

       for(int j=0; j<n; j++)

       {

           cin>>a[i][j];

       }

   }

}

void trans(int a[n][n])

{

   int temp;

   for(int i=0;i<n;i++)

   {

       for(int j=0;j<i;j++)

       {

           temp=a[i][j];

           a[i][j]=a[j][i];

           a[j][i]=temp;

       }

   }

}

Новые вопросы