Sunday, 27 November 2011

C++ Program For Print Sum Of Two Matrix


#include<iostream.h>
#include<conio.h>
void main()
 {
  int a[3][3],b[3][3],c[3][3];
  clrscr();
  cout<<"enter the element of array a";
  for(i=0;i<3;i++)
   {
     for(j=0;j<3;j++)
 {
   cin>>a[i][j];
 }
   }
   cout<<"enter the element of array b";
   for(i=0;i<3;i++)
   {
     for(j=0;j<3;j++)
 {
   cin>>b[i][j];
 }
   }
   cout<<"sum of two matrix=";
     for(i=0;i<3;i++)
   {
     for(j=0;j<3;j++)
 {
   cin>>a[i][j]+b[i][j]<<" ";
 }
   }
   getch();
  
   }

No comments:

Post a Comment