Advertisement
Guest User

Untitled

a guest
Dec 8th, 2016
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. int main()
  2. {
  3. matrix d(2,2), a(2,2);
  4.  
  5.  
  6. cout<<"Podaj macierz a :\n"<< endl;
  7. cin>>a;
  8. cout<<"Podaj macierz b :\n"<< endl;
  9. cin>>d;
  10. cout<<"Operator -= :\n"<< endl;
  11. a-=d;
  12. cout<<a;
  13. matrix b=d;
  14. cout<<b+a;
  15.  
  16. return 0;
  17. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement