/*************************************************************************** matrix.cpp - description ------------------- begin : Fri Jan 17 19:41:58 CST 2003 copyright : (C) 2003 by Daniel Eric Smith email : ***************************************************************************/ /*************************************************************************** * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * ***************************************************************************/ #include #include "matrix.hpp" int main() { matrix M(3,3),N(3,3),X(3,3),Y(3,3),Z(3,3); cout << "Enter M:"<>M; /*cout << "Enter N:"<>N; X=M+N; Y=M-N; Z=M*N; cout <<"M="<