برنامه زير دو ماتريس 5*5 را از ورودي ميگيره و حاصل جمع را در خروجي نمايش ميده
#include <cstdlib>
#include <iostream>
using namespace std;
int main()
{
int x[5][5],y[5][5],z[5][5],i,j;
cout<<"\n Matris 1";
for(i=0;i<5;i++)
for(j=0;j<5;j++){
cout<<"\n Enter a number satre...