#include #include #include #include using namespace std; int random () { int min=5; int max=20; int r = min+rand()%(max-(min)+1); return r; } main() { int A[2][3] , B[3][2] , C[2][2]; for(int i=0;i<2;i++){ for(int j=0;j<3;j++) { A[i][j] = random(); } } for(int i=0;i<3;i++){ for(int j=0;j<2;j++) { B[i][j] = random(); } } cout<<"Tabela A: "<>min; cout<<"Podaj liczbe max: "; cin>>max; for(int i=0;i<3;i++){ for(int j=0;j<2;j++) { A[i][j] = random(min,max); B[i][j] = random(min,max); } } cout<<"Tabela A: "<