Skip to main content

C++ Program to find the sum of matrices


We input two sets of matrices and the output is obtained simply adding the curresponding elements of the matrices. A game of simple logic.


Program:



//matrix
#include<iostream.h>
#include<conio.h>
class dom
{
int m,n,i,j,a[3][3],b[3][3],c[3][3];
public:
void get();
void check();
void disp();
};
void dom::get()
{
cout<<"enter the order of matrix\n";
cin>>m>>n;
cout<<"enter the elements of first matrix\n";
for(i=0;i<m;i++)
for(j=0;j<n;j++)
cin>>a[i][j];
cout<<"enter the elements of second matrix\n";
for(i=0;i<m;i++)
for(j=0;j<n;j++)
cin>>b[i][j];
};
void dom::check()
{
for(i=0;i<m;i++)
for(j=0;j<n;j++)
c[i][j]=a[i][j]+b[i][j];
};

void dom::disp()
{
cout<<"the sum of matrix is \n";
for(i=0;i<m;i++)
{
for(j=0;j<n;j++)
{
cout<<"\t"<<c[i][j];
}
cout<<"\n";
}
}





void main()
{
clrscr();
dom obj;
obj.get();
obj.check();
obj.disp();
getch();

}

Comments

Popular posts from this blog

Talky Messenger Documentation & Setup

( Github ) Just created a chat app that runs in Node and Socket. the attempt was worthy. Talky is a messenger app built with Node, Express, Socket, Angular & Bootstrap. It's like a server-client structure. (But obviously not like the one we done at OS lab using shared memory). It has a broadcasting structure. Talky does not keep a log on chat. i.e., It doesn't have a memory or database. When we close the browser window, chat history is lost. There I also added a basic console, protected by a password, to send real-time notifications to active clients. The name 'Talky' was suggested by a friend of mine. (hey, thank you for that. The fact is that I am not really good at naming...😝) What if sometimes your college blocks WhatsApp? Try Talky. ( There is also a website on internet in the name of 'Talky' which has no connection with this one. ) Download Talky Messenger To use Talky, all you need is 3 things: Node server Source code...

The Language Evaluation Criteria

There are a vast amount of programming language that we are using. Some are designed to accomplish some specific task. Some are for common uses. Any way the below described is a short ‘summery’ of the criteria we followed to evaluate the language. Overview 1.        Readability a.        Overall Simplicity b.       Orthogonality c.        Data Types d.       Syntax Design 2.        Writability a.        Simplicity and Orthogonality b.       Support for Abstraction c.        Expressivity 3.        Reliability a.        Type Checking b.       Exception Handling c.        Aliasing d.       Readability ...