Advertisement
Soverein

Untitled

Dec 2nd, 2020
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. int n, m ;
  2. cin >> n, m;
  3. cout << endl;
  4. int** matrix = new int* [n];
  5. for (int i = 0; i < n; i++)
  6. matrix[i] = new int[m];
  7. int *sumArray[n] = {};
  8. int minSum = NULL;
  9. srand(time(NULL));
  10.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement