1234567891011121314151617181920212223
Putvoid disp(int low,int up ) { for(int i=0;i<row;i++) { for(int c=0;c <col; c++) { myArray[i][c]=low + rand()% up; cout << myArray[i][c] << ""; } } cout <<""<<endl; } void print() { for(int rows=0;rows<row;rows++) { for(int cols=0;cols<col;cols++) cout << setw(5) << myArray[rows][cols] << "" ; cout << endl; } the code you need help with here.