Logo 
Search:

C++ Programming Articles

Submit Article
Home » Articles » C++ Programming » Mathematics ProgramRSS Feeds

Program to add, subtract and multiply matrix

Posted By: Easy Tutor     Category: C++ Programming     Views: 10641

Write a program that add, subtract and multiply matrices

Code for Program to add, subtract and multiply matrix in C++ Programming

#include <iostream.h>
#include <iomanip.h>
#include <conio.h>
#include "matrix.cpp"// included in zipvoid main()
{
   int choice;
   matrix obj;
   while(1){
   clrscr();
   cout<<"\t\tMATRIX OPERATIONS\n\n";
   cout<<"\t\t1) Addition\n";
   cout<<"\t\t2) Subtraction\n";
   cout<<"\t\t3) Multiplication\n";
   cout<<"\t\t4) Exit\n";
   cout<<"\t\tEnter your Choice :  ";
   cin>>choice;
   switch(choice){
     case 1 :  obj.matAdd();
           break;
     case 2 :  obj.matSub();
           break;
     case 3 :  obj.matMul();
           break;
     case 4 :  gotoout;
     default:  cout<<"\n\n\t\tInvalid Choice\n\n";
           getch();
           break;
   }
 }
 out:
}
  
Share: 


Didn't find what you were looking for? Find more on Program to add, subtract and multiply matrix Or get search suggestion and latest updates.

Easy Tutor
Easy Tutor author of Program to add, subtract and multiply matrix is from United States. Easy Tutor says

Hello Friends,

I am Free Lance Tutor, who helped student in completing their homework.

I have 4 Years of hands on experience on helping student in completing their homework. I also guide them in doing their final year projects.

I have share many programs on this website for everyone to use freely, if you need further assistance, than please contact me on easytutor.2ya [at the rate] gmail [dot] com

I have special discount scheme for providing tutor services. I am providing tutor service to students from various contries, currently most of my students are from United States, India, Australia, Pakistan, Germany, UK and Canada.

I am also here to expand my technical network to receive more opportunity in my career, make friends to help them in resolving their technical problem, learn and share my knowledge, If you like to be my friend, Please send me friend request.

Thanks,
Happy Programming :)

 
View All Articles

 

Other Interesting Articles in C++ Programming:


 
Please enter your Comment

  • Comment should be atleast 30 Characters.
  • Please put code inside [Code] your code [/Code].

 
Marwin Gallardo from Philippines Comment on: Jun 26
the program don't work on dev-c++

View All Comments