#pragma hdrstop
#pragma argsused
11
int main(int argc, char* argv[])
{
int t1[10][10],t2[10][10],td[10][10],tm[10][10];
srand ((int) time(NULL));
int i,j,k,l;
for (i=0;i<10;i++)
{
for (j=0;j<10;j++)
{
tm[i][j]=0;
}
}
for (i=0;i<10;i++)
{
for (j=0;j<10;j++)
{
t1[i][j]=rand() % 2 ;
}
}
for (i=0;i<10;i++)
{
for (j=0;j<10;j++)
{
t2[i][j]=rand() % 2 ;
}
}
for (i=0;i<10;i++)
{
for (j=0;j<10;j++)
{
td[i][j] = t1[i][j] + t2[i][j];
}
}
cout<<"Wynik dodawania:\n";
for (i=0;i<10;i++)
{
for (j=0;j<10;j++)
{
cout< } cout<<"\n"; } getchar(); getchar(); return 0; } 12 l) #include #include #include #include #pragma hdrstop #pragma argsused int main(int argc, char* argv[]) { int t1[10][10],t2[10][10],td[10][10],tm[10][10]; srand ((int) time(NULL)); int i,j,k,l; for (i=0;i<10;i++) { for (j=0;j<10;j++) { tm[i][j]=0; } } for (i=0;i<10;i++) { for (j=0;j<10;j++) { t1[i][j]=rand() % 2 ; } } for (i=0;i<10;i++) { for (j=0;j<10;j++) { t2[i][j]=rand() % 2 ; } } for (i=0;i<10;i++) { for (j=0;j<10;j++) { for (k=0;k<10;k++) { tm[i][j] = tm[i][j] + t1[i][k]*t2[k][j]; } } } cout<<"Wynik mnozenia (tabkica_1 * tablica_2):\n"; for (i=0;i<10;i++) { for (j=0;j<10;j++) { 13 cout< } cout<<"\n"; } getchar(); getchar(); return 0; } 14 Ad. 3. a) b) c) 15 d) e) 16 f) g) h) 17 i) j) k) l) 18 Literatura: 1. Notatki z zajęć. 2. Radosław Sokół, Wstęp do programowania w języku C++ 3. Jacek Matalewski, C++ Builder i Turbo C++. Podstawy. 4. Bruce Eckel, Thinking In C++. Edycja polska. 5. Jasse Liberty, C++ dla każdego. 19
Wyszukiwarka
Podobne podstrony: konsultant obslugi projektow finansowanych z programu kapital ludzki 07 15,86 Metodycznie i programowo Projekt metodyczny 01 Projektowanie i tworzenie programów Metody oceny projektow gosp 2 Metody projektowania i zlozonosc Metody oceny projektow gosp 1 Program III Kongresu Planowania i Projektowania Przestrzeni Miejskiej Darmowy program do projektowania szaf wnekowych Metody efektywnego uczenia si i pisania prac projektowych
więcej podobnych podstron
|