Ricko |
Wysłany: Pon 21:33, 03 Cze 2013 Temat postu: STUDIA: Sumowanie macierzy |
|
Cytat: |
#include <cstdlib>
#include <iostream>
#include <ctime>
using namespace std;
int main(int argc, char *argv[])
{
srand(time(NULL));
int wys,szer;
cout<<"Podaj szerokosci macierzy:"<<endl;
cin>>szer;
cout<<"Podaj szerokosc macierzy:"<<endl;
cin>>wys;
int **m1 = new int*[szer];
for (int x=0;x<szer;x++)
m1[x] = new int[wys];
int **m2 = new int*[szer];
for (int x=0;x<szer;x++)
m2[x] = new int[wys];
int **m3 = new int*[szer];
for (int x=0;x<szer;x++)
m3[x] = new int[wys];
for (int i=0;i<szer;i++)
for (int j=0;j<wys;j++)
{
m1[i][j]=rand()%20;
m2[i][j]=rand()%20;
}
cout<<endl<<"Macierz nr 1"<<endl;
for (int i=0;i<wys;i++)
for (int j=0;j<szer;j++)
{
if(j%szer==0)
cout<<endl;
cout<<m1[i][j]<<" ";
}
cout<<endl<<endl<<"Macierz nr 2"<<endl;
for (int i=0;i<wys;i++)
for (int j=0;j<szer;j++)
{
if(j%szer==0)
cout<<endl;
cout<<m2[i][j]<<" ";
}
cout<<endl<<endl<<"Suma macierzy:"<<endl<<endl;
for (int i=0;i<wys;i++)
for (int j=0;j<szer;j++)
m3[i][j]=m1[i][j]+m2[i][j];
for (int i=0;i<wys;i++)
for (int j=0;j<szer;j++)
{
if(j%szer==0)
cout<<endl;
cout<<m3[i][j]<<" ";
}
cout<<endl;
system("PAUSE");
return EXIT_SUCCESS;
}
|
|
|