Guest User

Untitled

a guest
Jun 22nd, 2018
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. #include <iostream>
  2. #include "funzioni.h"
  3. #include <fstream>
  4.  
  5. using namespace std;
  6.  
  7. int main()
  8. {matrice mat;
  9. vettore vet;
  10. int rig,col;
  11. leggiMatrice(mat,rig,col);
  12. cout<<"la matrice iniziale e':\n";
  13. stampaMatrice(mat,rig,col);
  14. eliminaVet(mat,rig,col,vet);
  15. cout<<"la matrice dopo l'eliminazione e':\n";
  16. stampaMatrice(mat,rig,col);
  17. return 0;
  18. }
Add Comment
Please, Sign In to add comment