C++
xxxxxxxxxx
using namespace std;
int main()
{
int r, c, a[100][100], b[100][100], sum[100][100], i, j;
cout << "Enter number of rows (between 1 and 100): ";
cin >> r;
cout << "Enter number of columns (between 1 and 100): ";
cin >> c;
cout << endl << "Enter elements of 1st matrix: " << endl;
for(i = 0; i < r; ++i)
for(j = 0; j < c; ++j)
{
cout << "Enter element a" << i + 1 << j + 1 << " : ";
cin >> a[i][j];
}
cout << endl << "Enter elements of 2nd matrix: " << endl;
for(i = 0; i < r; ++i)
for(j = 0; j < c; ++j)
{
cout << "Enter element b" << i + 1 << j + 1 << " : ";
cin >> b[i][j];
}
for(i = 0; i < r; ++i)
for(j = 0; j < c; ++j)
sum[i][j] = a[i][j] + b[i][j];
cout << endl << "Sum of two matrix is: " << endl;
for(i = 0; i < r; ++i)
for(j = 0; j < c; ++j)
{
cout << sum[i][j] << " ";
if(j == c - 1)
cout << endl;
}
return 0;
}
Enter number of rows (between 1 and 100): 2 Enter number of columns (between 1 and 100): 2 Enter elements of 1st matrix: Enter element a11: -4 Enter element a12: 5 Enter element a21: 6 Enter element a22: 8 Enter elements of 2nd matrix: Enter element b11: 3 Enter element b12: -9 Enter element b21: 7 Enter element b22: 2 Sum of two matrix is: -1 -4 13 10
Linux - anc-api-tools እንዴት እንደሚጫን
Linux - curvedns እንዴት እንደሚጫን
Linux - zenmap እንዴት እንደሚጫን
Python - ቁጥሩ አዎንታዊ፣ አሉታዊ ወይም 0 መሆኑን ያረጋግጡ
C - በአንድ ኢንቲጀር ውስጥ የአሃዞች ብዛት ይቁጠሩ
C - ተለዋዋጭ ማህደረ ትውስታ ምደባን በመጠቀም ትልቁን ቁጥር ያግኙ
C++ - ቁጥሩ ዋና መሆኑን ወይም አለመሆኑን ያረጋግጡ
Python - የ Excel (XLSX) ፋይሎችን መፃፍ
C++ - የሊፕ ዓመትን ያረጋግጡ
Java - ቁጥር ይገለበጥ
Kotlin - ቁጥር ይገለበጥ
Linux - zstd እንዴት እንደሚጫን
Kotlin - የቁጥር ፋክተርን ያግኙ
C++ - Quotient እና Remainderን ያግኙ
Python - የአረፋ ደርድር
Linux - xbitmaps እንዴት እንደሚጫን
JavaScript - ሕብረቁምፊው የሚጀምረው እና የሚያልቅ በተወሰኑ ቁምፊዎች መሆኑን ያረጋግጡ
Kotlin - አንድ ቁጥር ወደ n የአስርዮሽ ቦታዎች ክብ
We have been online since 2021 and 1 millions of people around the globe have visited our website since then
More visitors every month