|
Sojusz Fallen Fallen
|
Zobacz poprzedni temat :: Zobacz następny temat |
Autor |
Wiadomość |
Ricko
Brain
Dołączył: 07 Sie 2006
Posty: 3255
Przeczytał: 0 tematów
Pomógł: 5 razy Ostrzeżeń: 0/5 Skąd: ..::Zabrze::..
|
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;
}
|
Post został pochwalony 0 razy
|
|
Powrót do góry |
|
|
|
|
|
|
Możesz pisać nowe tematy Możesz odpowiadać w tematach Nie możesz zmieniać swoich postów Nie możesz usuwać swoich postów Nie możesz głosować w ankietach
|
fora.pl - załóż własne forum dyskusyjne za darmo
Powered by phpBB © 2001, 2002 phpBB Group
|