हिंदी
तमिलनाडु बोर्ड ऑफ सेकेंडरी एज्युकेशनएचएससी विज्ञान कक्षा ११

Write a C++ program to find the difference between two matrices. - Computer Science

Advertisements
Advertisements

प्रश्न

Write a C++ program to find the difference between two matrices.

संक्षेप में उत्तर

उत्तर

PROGRAM
#include<iostream>
#include<conio.h>
using namespace std;
int main( )
{
int row, col, m1[10][10], m2[10][10], sum[10][10];
cout<<“Enter the number of rows : “;
cin>>row;
cout<<“Enter the number of columns :”;
cin>>col;
cout<< “Enter the elements of first matrix: “<<endl;
for (int i = 0;i<row;i++ )
for (int j = 0;j <col;j++ )
cin>>m1[i][j];
cout< < “Enter the elements of second matrix: “<<endl;
for (int i = 0;i<row;i++ )
for (int j = 0;j<col;j++ )
< cin>>m2[i][j];
cout<<“Output: “<<endl;
for (int i = 0;i<row;i++ )
{
for (int j = 0;j<col;j++ )
{
sum[i][j]=m1[i][j] – m2[i][j]); cout<<sum[i][j]<<“”;
}
cout<<endl<<endl;
}
getch( );
return 0;
}
Output

 

shaalaa.com
  क्या इस प्रश्न या उत्तर में कोई त्रुटि है?
अध्याय 12: Arrays and Structures - Evaluation - Section - D [पृष्ठ २२५]

APPEARS IN

सामाचीर कलवी Computer Science [English] Class 11 TN Board
अध्याय 12 Arrays and Structures
Evaluation - Section - D | Q 1. | पृष्ठ २२५
Share
Notifications

Englishहिंदीमराठी


      Forgot password?
Use app×