22-08-2010, 15:27
|
|
|
חבר מתאריך: 11.12.08
הודעות: 26
|
|
רוצה את כל הקוד?
void sum(int a[3][3],int b[3][3]);
void product(int a[3][3],int b[3][3]);
int main(int argc, char *argv[])
{
int a[3][3];
int b[3][3];
cout << "please enter Matrix A variables: ";
for(int x=0;x<3;++x)
for(int y=0;y<3;++y)
cin >> a[x][y];
cout << "please enter Matrix b variables: ";
for(int x=0;x<3;++x)
for(int y=0;y<3;++y)
cin >> b[x][y];
sum(a,b);
product(a,b);
system("PAUSE");
return EXIT_SUCCESS;
}
void sum(int a[3][3],int b[3][3])
{
cout << "Matrices sum :\n";
for(int x=0;x<3;++x)
for(int y=0;y<3;++y)
{
cout << setw(4) << a[x][y]+b[x][y] << " ";
if(y==(3-1))
cout << "\n";
}
}
void product(int a[3][3],int b[3][3])
{
cout << "Matrices multiplication :\n";
for(int x=0;x<3;++x)
for(int y=0;y<3;++y)
{
int h=0;
for(int i=0;i<3;++i)
h+=a[x][i]*b[i][y];
cout << setw(4) << h << " ";
if(y==(3-1))
cout << "\n";
}
}
|