Advertisement
Guest User

Untitled

a guest
Jul 24th, 2017
54
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.16 KB | None | 0 0
  1. using namespace std;
  2. #include <iostream>
  3. #include "matrice.h"
  4.  
  5. int main()
  6. {
  7. matrice a;
  8. a(3, 2) = 71;
  9. cout << a(3, 2) << endl;
  10. system("pause");
  11. return 0;
  12. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement