// Main.cpp // Programme principal #include "Concept.h" using namespace std; int main(){ char fichier_entree[20]; char fichier_sortie[20]; int nbo,nbp; MatInt R0; cout<<" -------------------------------------------------"<>fichier_entree; entree_fichier(fichier_entree,nbo,nbp,R0); // Construction de T MatInt T(nbp,nbp); for (int i=0;iR0.getElement(k,j)) T.setElement(j,i,T.getElement(j,i)+1); } // Construction de D MatInt D(2,nbp-1); for (int i=0;i>rep1; cout<>rep2; cout<>fichier_sortie; sortie_fichier(fichier_sortie,CONCEPTS,REGLES); } system("pause"); system("cls"); return 0; }