answersLogoWhite

0

#include<iostream.h>

void main()

{

int a[3][3],b[3][3],diff[3][3];

cout<<"Enter elements of matrix a ";

for(int i=0;i<3;i++)

for(int j=0;j<3;j++)

cin>>a[i][j];

cout<<"Enter elements of matrix b ";

for(i=0;i<3;i++)

for(int j=0;j<3;j++)

cin>>b[i][j];

for(i=0;i<3;i++)

for(int j=0;j<3;j++)

c[i][j]=b[i][j]-a[i][j];

cout<<"\nThe difference is\n";

for(i=0;i<3;i++)

{

for(j=0;j<3;j++)

cout<<c[i][j]<<" ";

cout<<endl;

}

}

User Avatar

Wiki User

14y ago

What else can I help you with?

Related Questions

Is there any benefit in a C plus plus program to add two matrices?

No.


A program c plus plus on automorphic numbers or not?

how to write a program that counts automorphic number from 1 to 999


How do you write a C plus plus program that will display the first 10 positive prime numbers?

By learning how to program on C+.


Write a program in c plus plus to implement macro processor?

Don't write, it is already written, google for 'cpp'.


How do you write program to convert meter to kilometer in c plus plus?

Divide it by 1000.


Do I need to write a program to find a substring in a given string in c plus plus?

No.


Subtract 8x plus 6 - x plus 4?

Subtract it from WHAT!


How do you write an Algorithm for a C plus plus Program?

You don't write an algorithm for a C++ program, unless you are documenting the C++ program after-the-fact. The normal procedure is to write the algorithm first, in a language independent fashion, and then translate that stated algorithm into C++ code, or into whatever language you wish.


Write a program in c plus plus to compute first of non-terminal?

there is no solution of this problem...........that's it..........


How many classes can we write in a single c plus plus program?

Its limited only by available memory.


How do you write a C plus plus program that displays a pyramid of Xes on the screen using a for loop?

printf ("x")


Write a program in C programming language that computes the roots of the quadratic equation ax2 plus bx plus c?

Write your program and if you are having a problem post it here with a description of the problem you are having. What you are asking is for someone to do your homework for you.