Guest User

Untitled

a guest
Jan 13th, 2018
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. #include "Matrix.h"
  2. #include <iostream>
  3.  
  4.  
  5. //Default Constructor
  6. Matrix::Matrix()
  7. : mWidth(2),
  8. mHeight(2)
  9. {
  10. }
  11.  
  12. //Constructor with inputs
  13. Matrix::Matrix(int height, int width)
  14. : mHeight(height),
  15. mWidth(width)
  16. {
  17.  
  18. int Mat[mHeight][mWidth];
  19. }
Add Comment
Please, Sign In to add comment