//transpose d'une matrice #include #include using namespace std; int main() { const int N = 100; int m, n; cout << "Entrez les domensions de la matrice (max. 100 x 100) ?\n"; cin >> m >> n; if(m > N || n > N) { cout << "Les dimensions de la matrice sont trop grands !" << endl; system("PAUSE"); return 1; } double matrice[N][N]; cout << "Entrez le " << m << " x " << n << " elements (ligne apres ligne) :" << endl; for (int i=0; i> matrice[i][j]; cout << "\nLa matrice de depart est : " << endl; cout << setw(5) << "/" << setw(n*10+5) << "\\" << endl; for (int i=0; i