в первом вводе вводятся количество строк и столбцов
#include <iostream>
using namespace std;
int main() {
int colss,rowss;
cin >> cols >> rows;
int a[cols][rows];
for(int i = 0; i<cols; i++){
for(int j = 0; j<rows; j++){
cin >> a[i][j];
}
int b[rows][cols];
for(int i = 0; i<rows; i++){
for(int j = 0; j<cols; j++){
b[i][j] = a[j][i];
cout << b[i][j] << " ";
cout << endl;
return 0;
в первом вводе вводятся количество строк и столбцов
#include <iostream>
using namespace std;
int main() {
int colss,rowss;
cin >> cols >> rows;
int a[cols][rows];
for(int i = 0; i<cols; i++){
for(int j = 0; j<rows; j++){
cin >> a[i][j];
}
}
int b[rows][cols];
for(int i = 0; i<rows; i++){
for(int j = 0; j<cols; j++){
b[i][j] = a[j][i];
}
}
for(int i = 0; i<cols; i++){
for(int j = 0; j<rows; j++){
cout << b[i][j] << " ";
}
cout << endl;
}
return 0;
}