Guest User

Untitled

a guest
Oct 22nd, 2016
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.18 KB | None | 0 0
  1. int x, y;
  2. cout << "Введите длинну массива" << endl;
  3. cin >> x >> y;
  4. int mass** = new int*[x];
  5. int** mass = for(int i = 0; i < x; ++i) mass[i] = new int[y];
Add Comment
Please, Sign In to add comment